-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path_base.scss
85 lines (69 loc) · 1013 Bytes
/
_base.scss
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
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
body {
font-family: $font-family-sans-serif;
background-color: $meta-white;
color: $garbage-collector-gray;
font-size: 18px;
font-weight: 300;
line-height: 1.75;
}
section {
background-color: white;
}
h1, h2, h3, h4 {
font-weight: 800;
@include media($mobile) {
font-size: 1.3em;
line-height: 1.2;
}
}
h1 {
font-size: 32px;
}
h3 {
color: $ruby-red;
font-size: 24px;
font-weight: 800;
}
h3 i {
color: #ccc;
}
a {
color: $ruby-red;
text-decoration: none;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
li {
text-indent: -0.5em;
padding-left: 1.5em;
}
li:before {
content: "•";
color: $meta-gray;
padding-right: 0.5em;
}
.short {
display: none;
@include media($mobile) {
display: inline;
}
}
.long {
display: inline;
@include media($mobile) {
display: none;
}
}