blob: e49a6695d85c5d99c163e9bc1915ba99fcdf444e (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
|
body {
min-height: 100vh;
}
main {
height: inherit;
display: flex;
flex-direction: column;
justify-content: stretch;
}
footer {
background: #00000055;
}
.flex {
display: flex;
}
.flex.row {
flex-direction: row;
}
.flex.col {
flex-direction: column;
}
.footer-info {
width: 100%;
justify-content: center;
}
.flex.footer-info {
gap: 1rem;
}
.footer-info .flex.col {
min-width: 250px;
}
footer {
position:relative;
}
.copyright {
background: #00000055;
position: absolute;
left: 0;
bottom: 0;
width: 100%;
padding: 1rem;
text-align: center;
}
|