-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.css
52 lines (43 loc) · 827 Bytes
/
footer.css
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
html,
body {
height: 100%;
margin: 0;
}
.contenuto {
padding: 90px 50px 0px 50px;
min-height: 100%;
}
footer,
.push {
margin-top: 30px;
width: 100%;
height: 150px;
vertical-align: center;
background: black;
color: white;
}
/* centro verticalmente gli elementi del footer */
footer .center {
display: flex;
align-items: center;
justify-content: center;
}
/* adatto l'altezza del footer per i dispositivi mobili */
@media only screen and (max-width: 768px) {
footer,
.push {
margin-top: 30px;
width: 100%;
height: 400px;
vertical-align: center;
background: black;
color: white;
}
.contenuto {
padding: 90px 20px 0px 20px;
min-height: 100%;
}
}
.navbar {
background-color: black;
}