forked from css-for-js/variable-fonts-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (85 loc) · 1.53 KB
/
style.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
95
96
97
98
99
100
* {
box-sizing: border-box;
font-family: 'Raleway', sans-serif;
--color-gray-100: hsl(270deg 25% 96%);
--color-gray-300: hsl(270deg 17% 84%);
--color-gray-500: hsl(270deg 17% 72%);
--color-gray-700: hsl(270deg 12% 58%);
--color-gray-900: hsl(270deg 22% 12%);
--color-gray-1000: hsl(270deg 20% 8%);
}
html,
body {
margin: 0;
padding: 0;
height: 100%;
}
.wrapper {
min-height: 100%;
display: flex;
flex-direction: column;
}
.bottom-wrapper {
background: var(--color-gray-1000);
color: var(--color-gray-100);
padding: 64px 32px;
}
footer {
display: flex;
justify-content: space-between;
max-width: calc(1200 / 16 * 1rem);
margin: 0 auto;
}
.meta {
display: flex;
flex-direction: column;
}
.logo {
font-size: 2rem;
margin-bottom: 16px;
font-weight: 900;
color: white;
}
.sublogo {
font-weight: 500;
font-style: italic;
color: var(--color-gray-500);
}
.sublogo .person-name {
font-weight: 700;
color: var(--color-gray-300);
}
.legal {
margin-top: auto;
color: var(--color-gray-700);
font-weight: 400;
}
.links {
display: flex;
gap: 64px;
}
.links h2 {
margin-bottom: 24px;
letter-spacing: 0.03em;
text-transform: uppercase;
font-weight: 700;
color: var(--color-gray-700);
}
.links li {
margin: 16px 0;
}
.links li:last-of-type {
margin-bottom: 0;
}
.links a {
text-decoration: none;
font-weight: 500;
color: var(--color-gray-100);
}
main {
flex: 1;
/* Fake styles, just to stub it out */
display: flex;
justify-content: center;
align-items: center;
}