-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter_index.css
92 lines (76 loc) · 1.39 KB
/
footer_index.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
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #212331;
}
.footer {
background-color: #212331;
color: #CCCCCC;
padding: 15px;
width: 100%;
bottom: 0;
}
.footer .container {
max-width: 1200px;
margin: 0 auto;
}
.footer .row {
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
color: white;
}
.footer .col {
flex: 1;
min-width: 200px;
margin: 10px;
text-align: left;
color: white;
}
.footer .logo {
width: 130px;
margin-bottom: 10px;
}
.footer .contact-info, .footer .links, .footer .social-icons {
list-style: none;
padding: 0;
}
.footer .contact-info li, .footer .links li {
margin-bottom: 8px;
}
.footer .social-icons {
display: flex;
}
.footer .social-icons li {
margin-right: 10px;
}
.footer .disclaimer, .footer .copyright {
text-align: center;
margin-top: 20px;
font-size: 12px;
color: white;
}
.footer a {
color: white;
text-decoration: none;
}
.footer a:hover {
color: #D6C790;
}
.footer a::before {
content: "➤ ";
font-size: 12px;
margin-right: 5px;
color: #FFFFFF;
transition: color 0.3s ease; }
.footer a:hover::before {
color: #CCCCCC;
}
@media (max-width: 768px) {
.footer .row {
flex-direction: column;
text-align: center;
}
}