blob: 1035cc0b1cb6c3b49a9b4f1d7b8030faf6625e94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
############################################################################
# #
# 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);
}
|