blob: d95fed0c316b7e82f4b27ea2f35a6e687228f072 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/* UGE / L2 / Intro to relational databases / Python project prototype
* Author: Pacien TRAN-GIRARD
* Licence: EUPL-1.2
*/
/***** PEPAL LOGO COLOURING *****/
.pepal-logo {
font-style: italic;
font-weight: bold;
}
.dark-blue {
color: #013088;
}
.dark-blue-bg {
background-color: #013088;
}
.light-blue {
color: #029de0;
}
.light-blue-bg {
background-color: #029de0;
}
.amount-positive {
color: darkgreen;
}
.amount-negative {
color: darkred;
}
.wallet-actions a {
width: 100%;
box-sizing: border-box;
}
|