-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
executable file
·127 lines (105 loc) · 1.66 KB
/
styles.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
@import url("https://rsms.me/inter/inter-ui.css");
body {
position: relative;
margin: 0;
padding: 0;
font-family: "Inter UI", sans-serif;
text-align: center;
color: #FFFFFF;
background: linear-gradient(-180deg, #20BF55 0%, #01BAEF 100%);
}
.content-wrapper {
position: relative;
padding: 104px 0 24px 0;
width: 95%;
max-width: 600px;
margin: auto;
}
h1 {
display: block;
font-size: 80px;
margin: 0 0 24px 0;
}
@media (max-width: 500px) {
h1 {
font-size: 16vw;
}
}
h2 {
font-weight: 300;
font-size: 18px;
}
h3 {
font-weight: 500;
font-size: 18px;
}
h4 {
padding-top: 20px;
}
a {
color: inherit;
text-decoration: none;
font-style: italic;
}
a:hover {
color: #7bd9f4;
}
.title-heading {
font-weight: bolder;
color: #20BF55;
text-transform: uppercase;
padding: 0 16px;
background: #ffffff;
}
.section-heading {
font-weight: bolder;
text-transform: uppercase;
padding: 0 16px;
margin: 75px 0 50px;
}
ul {
padding: 0;
}
li {
display: block;
box-sizing: border-box;
text-align: left;
font-size: 18px;
width: 100%;
padding: 16px 24px;
background: rgba(27, 48, 66, 0.8);
margin-bottom: 16px;
}
.transcript-text-wrapper {
text-align: justify;
}
.transcript-text-wrapper p {
padding: 10px 0;
}
.header {
margin-bottom: 104px;
}
.supplemental-links {
display: flex;
font-size: 20px;
justify-content: space-around;
}
.supplemental-item {
font-style: normal;
font-weight: 500;
}
.resource-links,
.transcript-container,
.usage-instructions {
margin-top: 64px;
}
.footer {
margin-top: 224px;
}
.footer img {
height: 104px;
width: auto;
}
.footer a {
font-style: normal;
}