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