-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
59 lines (49 loc) · 773 Bytes
/
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
@import url('https://fonts.googleapis.com/css?family=Oswald|Oxygen+Mono');
html {
font-size: 62.5%;
}
body {
background-color: black;
color: whitesmoke;
}
h1 {
font-size: 12rem;
margin: 0;
}
p, li {
font-size: 1.6rem;
}
a {
color: white;
text-decoration: underline;
}
h5 {
font-size: 1.5rem;
}
.tickers {
margin-top: 5rem;
margin-left: 2rem;
max-width: 120rem;
font-family: 'Oswald', sans-serif;
letter-spacing: 0.05em;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}
.ticker {
flex-basis: 24rem;
text-align: left;
position: relative;
padding-bottom: 4rem;
}
.ticker .label {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
}
.sources {
max-width: 50rem;
margin-left: 2rem;
font-family: 'Oxygen Mono', monospace;
}