forked from reflex-frp/reflex-frp.org
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (55 loc) · 1.16 KB
/
style.css
File metadata and controls
68 lines (55 loc) · 1.16 KB
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
@import url('https://fonts.googleapis.com/css?family=Asap:400,400i,500,500i,700,700i|PT+Sans:400,400i,700,700i');
* {
box-sizing: border-box;
}
html {
font-size: 1em;
font-family: 'PT Sans', helvetica, sans-serif;
font-weight: 400;
}
.header {
}
.header h1 {
margin: 0 auto;
text-align: center;
font-family: 'Asap', helvetica, sans-serif;
font-weight: 700;
}
.header h1 img {
width: 32rem;
}
ul.sections {
margin: 0 0 3rem 0;
padding: 0.5rem;
display: flex;
flex-wrap: wrap;
justify-content: center;
list-style: none;
border-top: 1px solid #d1dadc;
border-bottom: 1px solid #d1dadc;
}
ul.sections li {
}
ul.sections li + li {
border-left: 1px solid #ecf1f3;
}
ul.sections li a {
padding: 0 0.3rem;
margin: 0.3rem 1rem;
text-decoration: none;
display: flex;
align-items: flex-start;
color: #333;
text-transform: uppercase;
border-bottom: 4px solid transparent;
}
ul.sections li a:hover, ul.sections li a:focus {
color: #d4272a;
}
ul.sections li a.active {
border-bottom: 4px solid #d4272a;
}
.main {
margin: auto;
width: 650px;
}