diff options
Diffstat (limited to 'static/stylesheets/pepal.css')
-rw-r--r-- | static/stylesheets/pepal.css | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/static/stylesheets/pepal.css b/static/stylesheets/pepal.css new file mode 100644 index 0000000..d95fed0 --- /dev/null +++ b/static/stylesheets/pepal.css | |||
@@ -0,0 +1,40 @@ | |||
1 | /* UGE / L2 / Intro to relational databases / Python project prototype | ||
2 | * Author: Pacien TRAN-GIRARD | ||
3 | * Licence: EUPL-1.2 | ||
4 | */ | ||
5 | |||
6 | /***** PEPAL LOGO COLOURING *****/ | ||
7 | |||
8 | .pepal-logo { | ||
9 | font-style: italic; | ||
10 | font-weight: bold; | ||
11 | } | ||
12 | |||
13 | .dark-blue { | ||
14 | color: #013088; | ||
15 | } | ||
16 | |||
17 | .dark-blue-bg { | ||
18 | background-color: #013088; | ||
19 | } | ||
20 | |||
21 | .light-blue { | ||
22 | color: #029de0; | ||
23 | } | ||
24 | |||
25 | .light-blue-bg { | ||
26 | background-color: #029de0; | ||
27 | } | ||
28 | |||
29 | .amount-positive { | ||
30 | color: darkgreen; | ||
31 | } | ||
32 | |||
33 | .amount-negative { | ||
34 | color: darkred; | ||
35 | } | ||
36 | |||
37 | .wallet-actions a { | ||
38 | width: 100%; | ||
39 | box-sizing: border-box; | ||
40 | } | ||