-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.scss
102 lines (82 loc) · 1.39 KB
/
main.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
---
# Only the main Sass file needs front matter (the dashes are enough)
---
html *
{
font-family: Arial,"黑体" !important;
}
table {
display: block;
width: 100%;
overflow: auto;
border-spacing: 0px;
th,
td {
padding: 6px 13px;
border: 1px solid lighten(gray, 5%);
border-spacing: 0px;
}
tr {
background-color: white;
border-top: 1px solid darken(gray, 90%);
border: 1px solid lighten(gray, 10%);
border-spacing: 0px;
&:nth-child(2n) {
background-color: lightgray;
}
}
img {
background-color: transparent;
}
}
hr {
height: 0.25em;
padding: 0;
margin: 0.5em 0;
background-color: lightgray;
border: 0;
}
body {
// Headings
h1,
h2,
h3,
h4 {
margin-top: 1.5em;
margin-bottom: 0.5em;
font-weight: bolder;
line-height: 100%;
.octicon-link {
color: black;
vertical-align: middle;
visibility: hidden;
}
&:hover .anchor {
text-decoration: none;
.octicon-link {
visibility: visible;
}
}
tt,
code {
font-size: inherit;
}
}
h1 {
padding-bottom: 0.3em;
font-size: 2em;
border-bottom: 1px solid lighten(gray, 3%);
}
h2 {
padding-bottom: 0.3em;
font-size: 1.5em;
border-bottom: 1px solid lighten(gray, 3%);
}
h3 {
font-size: 1.25em;
}
h4 {
font-size: 1em;
}
}
@import "minima";