blob: e86c352c7c2027d76f09684a5b54c9a2db0afc15 (
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
|
/*
############################################################################
# #
# Description: CSS spécifique du footer #
# #
############################################################################
*/
/* FOOTER */
footer {
min-height: 10vh;
display: flex;
flex-direction: column;
text-align: center;
font-size: var(--fontSizeSmall);
color: var(--footerTextColor);
background-color: var(--footerBgColor);
}
footer a {
color: #695454;
}
|