-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
101 lines (82 loc) · 1.52 KB
/
style.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
101
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans:400,700");
body {
font-family: 'Noto Sans', sans-serif;
}
.note-graph {
width: 100%;
display: block;
}
h1, h2, h3 {
color: #333;
}
h2 {
position: relative;
}
h2::after {
content: '';
position: absolute;
top: 100%;
left: 0;
height: 1px;
width: 100%;
background-color: #ccc;
}
h3::before {
content: '# ';
color: #42B983;
}
table, td, th {
box-shadow: 0 0 1px black;
}
code {
color: #5AC193;
}
.tip, .question {
position: relative;
padding-left: 1em;
}
.tip {
border-left: 4px solid hsl(0, 100%, 70%);
}
.question {
border-left: 4px solid hsl(46, 100%, 70%);
}
.tip::before, .question::before {
position: absolute;
top: 0;
bottom: 0;
margin: auto;
left: -.88em;
width: 20px;
height: 20px;
border-radius: 100%;
text-align: center;
line-height: 20px;
font-weight: bold;
font-size: 14px;
color: #fff;
}
.tip::before {
content: '!';
background-color: hsl(0, 100%, 70%);
}
.question::before {
content: '?';
background-color: hsl(46, 100%, 70%);
}
.console-error {
color: red;
background-color: #FFF0F0;
outline: 1px solid #FFD7D7;
padding: 8px 25px;
position: relative;
font-family: monospace;
font-style: 10pt;
}
.console-error i {
content: '';
position: absolute;
left: 8px;
top: 10px;
}