-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstylesheet.css
More file actions
44 lines (39 loc) · 766 Bytes
/
stylesheet.css
File metadata and controls
44 lines (39 loc) · 766 Bytes
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
@font-face {
font-family: fira-sans;
src: url(FiraSans-Black.ttf);
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: fira-sans-condensed;
src: url(FiraSansCondensed-Regular.ttf);
font-weight: 400;
font-style: normal;
}
body {
font-family: fira-sans-condensed, sans-serif;
font-weight: 400;
font-size: 1.2em;
color: #333;
}
h1 {
font-family: fira-sans, sans-serif;
font-weight: 900;
font-size: 8em;
font-variant: small-caps;
line-height: 0.7em;
text-align: right;
letter-spacing: -5px;
margin: 0;
position: absolute;
bottom: 50px;
right: 50px;
}
p {
margin-left: 10px;
}
@media screen and (max-width: 430px) {
h1 {
font-size: 6em;
}
}