-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathmain.scss
More file actions
executable file
·47 lines (40 loc) · 809 Bytes
/
main.scss
File metadata and controls
executable file
·47 lines (40 loc) · 809 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
45
46
47
---
# Only the main Sass file needs front matter (the dashes are enough)
---
@charset "utf-8";
$font-family: "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
$font-size: 16px;
$line-height: 1.5;
$spacing-unit: 30px;
$headline-color: #222;
$text-color: #555;
$key-color: #F1595F;
// Import partials from `sass_dir` (defaults to `_sass`)
@import
"reset",
"type",
"layout",
"syntax-highlighting"
;
// Give quotes a GH-like appearance.
blockquote {
border-left: 3px solid #EDEDED;
padding-left: 12px;
}
// Thin gray line.
hr {
border: none;
border-bottom: 1px solid #EDEDED;
margin-bottom: 20px;
}
// Better separation from HR in Guides.
.main h3 {
margin-top: 25px;
}
.date {
color: #C2C2C2;
font-size: 80%;
}
header h1 {
margin-bottom: 8px;
}