-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.scss
More file actions
116 lines (97 loc) · 1.67 KB
/
main.scss
File metadata and controls
116 lines (97 loc) · 1.67 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
106
107
108
109
110
111
112
113
114
115
116
---
---
/* Base styles */
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
line-height: 1.6;
color: #333;
margin: 0;
padding: 0;
}
/* Code styling */
pre, code {
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
background-color: #f6f8fa;
border-radius: 6px;
}
pre {
padding: 16px;
overflow: auto;
border: 1px solid #e1e4e8;
}
code {
padding: 0.2em 0.4em;
font-size: 85%;
}
pre code {
padding: 0;
background-color: transparent;
}
/* Links */
a {
color: #0366d6;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Headers */
h1, h2, h3, h4, h5, h6 {
margin-top: 24px;
margin-bottom: 16px;
font-weight: 600;
line-height: 1.25;
}
h1 {
font-size: 2em;
border-bottom: 1px solid #eaecef;
padding-bottom: 0.3em;
}
h2 {
font-size: 1.5em;
border-bottom: 1px solid #eaecef;
padding-bottom: 0.3em;
}
/* Lists */
ul, ol {
padding-left: 2em;
}
/* Tables */
table {
border-collapse: collapse;
width: 100%;
margin: 16px 0;
}
th, td {
border: 1px solid #dfe2e5;
padding: 6px 13px;
}
th {
background-color: #f6f8fa;
font-weight: 600;
}
/* Blockquotes */
blockquote {
padding: 0 1em;
color: #6a737d;
border-left: 0.25em solid #dfe2e5;
margin: 0;
}
/* Badges */
img[alt*="badge"] {
margin-right: 4px;
margin-bottom: 4px;
}
/* Navigation improvements */
.site-nav a {
padding: 8px 16px;
border-radius: 6px;
transition: background-color 0.2s;
}
.site-nav a:hover {
background-color: #f1f3f4;
text-decoration: none;
}
.site-nav a.current {
background-color: #e1f5fe;
}