-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.css
More file actions
124 lines (104 loc) · 2.03 KB
/
footer.css
File metadata and controls
124 lines (104 loc) · 2.03 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
footer.footer {
background-color: var(--footer-background);
color: var(--footer-font-color);
font-size: calc(15 / var(--rem-base) * 1rem);
line-height: var(--footer-line-height);
padding: 1.5rem;
padding-top: 5rem;
}
.footer p {
margin: 0.5rem 0;
}
.footer-info {
display: flex;
gap: 24px;
}
@media screen and (max-width: 720px) {
.footer-info {
flex-direction: column;
}
}
@media screen and (min-width: 720px) {
.footer-info {
flex-direction: row;
}
}
.footer-info-item-large {
flex-grow: 3;
}
.footer-info-item {
flex-grow: 1;
}
.footer-info-item h2 {
margin-top: 0;
font-family: var(--header-font-family);
font-weight: var(--heading-font-weight);
}
.footer-motto {
font-family: var(--header-font-family);
font-weight: var(--heading-font-weight);
}
.footer-link-list {
list-style-type: none;
padding: 0;
margin: 0;
}
.footer-link-list li a {
color: var(--footer-font-color);
}
.footer-link-list li a:hover {
text-decoration: none;
color: var(--color-brand-primary);
}
.c-and-socials {
display: flex;
gap: 24px;
align-items: center;
justify-content: space-between;
}
@media screen and (max-width: 720px) {
.c-and-socials {
flex-direction: column;
}
}
@media screen and (min-width: 720px) {
.c-and-socials {
flex-direction: row;
}
}
.footer-container {
display: flex;
flex-direction: column;
gap: 24px;
}
.social-icons-container {
display: flex;
flex-direction: row;
gap: 10px;
}
.social-icon {
color: var(--footer-font-color);
background-color: var(--footer-background);
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 20px;
height: 36px;
width: 36px;
cursor: pointer;
transition: all 0.3s;
}
.social-icon:hover {
color: var(--footer-background);
background-color: var(--color-brand-primary);
text-decoration: none;
}
.footer-seperator {
width: 100%;
height: 1px;
background-color: var(--footer-font-color);
}
.copyright-notice {
color: var(--footer-copyright-font-color);
}