diff options
Diffstat (limited to 'assets/css/main.css')
-rw-r--r-- | assets/css/main.css | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/assets/css/main.css b/assets/css/main.css index 75f2b9e..e49a669 100644 --- a/assets/css/main.css +++ b/assets/css/main.css | |||
@@ -7,4 +7,47 @@ main { | |||
7 | display: flex; | 7 | display: flex; |
8 | flex-direction: column; | 8 | flex-direction: column; |
9 | justify-content: stretch; | 9 | justify-content: stretch; |
10 | } | ||
11 | |||
12 | footer { | ||
13 | background: #00000055; | ||
14 | } | ||
15 | |||
16 | .flex { | ||
17 | display: flex; | ||
18 | } | ||
19 | |||
20 | .flex.row { | ||
21 | flex-direction: row; | ||
22 | } | ||
23 | |||
24 | .flex.col { | ||
25 | flex-direction: column; | ||
26 | } | ||
27 | |||
28 | .footer-info { | ||
29 | width: 100%; | ||
30 | justify-content: center; | ||
31 | } | ||
32 | |||
33 | .flex.footer-info { | ||
34 | gap: 1rem; | ||
35 | } | ||
36 | |||
37 | .footer-info .flex.col { | ||
38 | min-width: 250px; | ||
39 | } | ||
40 | |||
41 | footer { | ||
42 | position:relative; | ||
43 | } | ||
44 | |||
45 | .copyright { | ||
46 | background: #00000055; | ||
47 | position: absolute; | ||
48 | left: 0; | ||
49 | bottom: 0; | ||
50 | width: 100%; | ||
51 | padding: 1rem; | ||
52 | text-align: center; | ||
10 | } \ No newline at end of file | 53 | } \ No newline at end of file |