-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy path_type.scss
More file actions
96 lines (76 loc) · 1.25 KB
/
_type.scss
File metadata and controls
96 lines (76 loc) · 1.25 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
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
@import url(http://fonts.googleapis.com/css?family=Bitter:400,700);
body {
font-family:$font-family;
font-size:$font-size;
line-height:$line-height;
color:$text-color;
}
h1, h2, h3, nav, .version, .version-menu, .buttons {
font-family: Bitter, $font-family;
line-height:1;
}
h1, h2, h3, h4, h5 {
color:$headline-color;
}
h2 {
font-size:$font-size * 2;
margin-top:$spacing-unit;
span {
color:#aaa;
}
&:first-child {
margin-top:0;
}
}
h3 {
font-size:$font-size * 1.2;
}
h4 {
font-weight:500;
color:#999;
}
h5 {
border-bottom:1px solid #ededed;
padding:0 0 $spacing-unit/4;
margin:0 0 $spacing-unit/3;
}
.version, .version-menu {
font-size:$font-size*0.8;
}
strong {
font-weight:bold;
color:#222;
}
a {
text-decoration:none;
color:$key-color;
span {
color:#aaa;
}
&:hover {
color:darken($key-color, 20%);
span {
color:#727272;
}
}
}
.outline {
font-weight:500;
a {
color:$text-color;
&:hover {
color:$headline-color;
}
&.selected {
color:$key-color;
}
}
}
code {
font-family:Consolas, 'Liberation Mono', Menlo, Courier, monospace;
background:#f8f8f8;
padding:4px;
border:1px solid #ededed;
border-radius:3px;
font-size:13px;
}