-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
87 lines (71 loc) · 1.25 KB
/
main.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
body {
font-family: "Red Hat Display", Helvetica, sans-serif;
font-weight: 300;
color: rgb(55, 29, 46);
padding: 2rem 2rem 0 2rem;
margin: 0;
}
h1 {
font-weight: 700;
}
h1,
h2,
h3,
.image-container {
text-align: center;
}
img {
max-width: 100%;
}
iframe {
max-width: 100%;
}
.content {
max-width: 800px;
margin: auto;
}
.todo {
text-align: center;
background-color: magenta;
}
.footer {
/* --auto-grid-min-size: 16rem; */
/* gap: 1rem; */
/* grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr));
grid-template-rows: 200px; */
padding: 3rem 1rem;
background-color: rgb(55, 29, 46);
color: white;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.footer > * {
align-self: center;
min-width: 250px;
flex: 1 0;
}
.footer h2 {
color: rgb(134, 163, 151);
text-align: left;
font-size: 64px;
padding: unset;
margin: unset;
}
.footer-copy {
max-width: 300px;
}
.footer-links {
padding: 3rem;
}
.footer .image-container {
max-height: 100%;
max-width: 100%;
}
.footer img {
max-height: 100%;
}
.full-bleed {
box-shadow: 0 0 0 100vmax rgb(55, 29, 46);
clip-path: inset(0 -100vmax);
}