-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.css
100 lines (87 loc) · 1.83 KB
/
common.css
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
body {
font-size: 16px;
font-family: Lato, "Helvetica Neue", Arial, "Microsoft Yahei", Helvetica, sans-serif;
}
.ui.header {
font-family: Lato, "Helvetica Neue", Arial, "Microsoft Yahei", Helvetica, sans-serif;
}
.main.container {
padding: 2em 0em 7em;
}
.masthead.segment {
padding: 3em 0em;
}
img {
border: 1px solid rgb(220, 220, 220);
}
code {
padding: 0;
padding-top: 0.2em;
padding-bottom: 0.2em;
margin: 0;
font-size: 85%;
font-family: Consolas, monospace;
background-color: rgba(27, 31, 35, 0.05);
border-radius: 3px;
}
code::before,
code::after {
letter-spacing: -0.2em;
content: "\00a0";
}
abbr[title] {
text-decoration: none;
}
kbd {
display: inline-block;
padding: 3px 5px;
font-size: 11px;
font-family: Consolas, monospace;
line-height: 10px;
color: #444d56;
vertical-align: middle;
background-color: #fafbfc;
border: solid 1px #c6cbd1;
border-bottom-color: #959da5;
border-radius: 3px;
box-shadow: inset 0px -1px 0px #959da5;
}
pre {
display: block;
margin-top: 0;
margin-bottom: 1rem;
padding: 1rem;
font-size: .8rem;
line-height: 1.4;
white-space: pre-wrap;
word-break: break-all;
word-wrap: break-word;
background-color: #f0f0f0;
}
pre code {
padding: 0;
font-family: "Consolas", monospace;
font-size: 100%;
color: inherit;
background-color: transparent;
}
pre code::before,
pre code::after {
letter-spacing: 0;
content: none;
}
blockquote {
margin: 0 0 1rem;
padding: .5rem 1rem;
border-left: 3px solid #dfdfdf;
}
a[target="_blank"]:after {
content: "";
background: url("external-link.svg");
background-size: 12px 12px;
display: inline-block;
height: 12px;
width: 12px;
margin-left: 4px;
margin-bottom: -1px;
}