This repository was archived by the owner on Feb 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.sass
More file actions
105 lines (79 loc) · 1.39 KB
/
style.sass
File metadata and controls
105 lines (79 loc) · 1.39 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
97
98
99
100
101
102
103
104
105
---
# Front matter comment to ensure Jekyll properly reads file.
---
@import "reset"
@import "variables"
html
font-size: 100%
body
background: $white
font: 18px/1.4 $roboto
color: $darkGray
h1, h2, h3, h4, h5, h6
font-family: $roboto
color: $darkerGray
font-weight: bold
line-height: 1.7
margin: 1em 0 15px
padding: 0
@include mobile
line-height: 1.4
h1
font-size: 30px
a
color: inherit
h2
font-size: 24px
h3
font-size: 20px
h4
font-size: 18px
color: $gray
p
margin: 15px 0
a
color: $blue
text-decoration: none
cursor: pointer
&:hover, &:active
color: $blue
ul, ol
margin: 15px 0
padding-left: 30px
ul
list-style-type: disc
ol
list-style-type: decimal
ol ul, ul ol, ul ul, ol ol
margin: 0
ul ul, ol ul
list-style-type: circle
em, i
font-style: italic
strong, b
font-weight: bold
img
max-width: 100%
// Fixes images in popup boxes from Google Translate
.gmnoprint img
max-width: none
.date
font-style: italic
color: $gray
// Specify the color of the selection
::-moz-selection
color: $black
background: $lightGray
::selection
color: $black
background: $lightGray
// Nicolas Gallagher's micro clearfix hack
// http://nicolasgallagher.com/micro-clearfix-hack/
.clearfix:before, .clearfix:after
content: " "
display: table
.clearfix:after
clear: both
@import "layout"
@import "highlights"
@import "svg-icons"