-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfooter.css
94 lines (78 loc) · 1.36 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
.first-footer {
display: flex;
background-color: #ACCBEF;
color: #002A5A;
height: 120px;
align-content: center;
justify-content: center;
padding: 40px;
}
.first-footer--container {
width: 50%;
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
gap: 10px;
max-width: 562px;
}
.first-footer--container h4 {
margin: 0;
display: flex;
}
.first-footer--sub {
display: flex;
}
.first-footer--sub a {
text-decoration: none;
font-size: 16px;
color: #002A5A;
margin-right: 5%;
}
.second-footer {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 0;
padding: 1%;
background-color: #2E64A4;
color: white
}
.second-footer--container {
display: flex;
flex-direction: row;
}
.second-footer p {
font-size: 16px;
margin-top: 0;
}
.second-footer--privacy {
text-decoration: none;
color: white;
font-size: 16px;
margin-right: 10px;
}
@media (max-width:870px) {
.first-footer {
flex-direction: column;
height: 100%;
gap: 1rem;
}
.first-footer--container {
width: 100%;
}
}
@media (max-width: 450px) {
.second-footer {
padding: 0px 25px;
}
.first-footer--sub {
flex-direction: column;
}
.second-footer--container {
flex-direction: column;
align-items: center;
justify-content: center;
}
}