forked from gbdev/gb-asm-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
71 lines (56 loc) · 1.03 KB
/
custom.css
File metadata and controls
71 lines (56 loc) · 1.03 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
.box {
margin: 20px 0;
padding: 1.6px 20px;
border-left-width: .5rem;
border-left-style: solid;
}
.box .box-title {
font-weight: 600;
}
.box.decorated {
padding-left: 10px;
display: flex;
flex-flow: row nowrap;
align-items: flex-start;
}
.box.decorated > :first-child {
margin-right: 10px;
}
.box.tip {
border-color: #42b983;
background-color: var(--quote-bg);
}
.box.challenge {
border-color: #40a5b7;
background-color: var(--quote-bg);
}
.box.warning {
border-left-color: #e7c000;
background-color: rgba(255, 229, 100, .2);
}
.box.danger {
border-left-color: #c60000;
background-color: rgba(215, 81, 81, .2);
}
pre > code.linenos {
counter-reset: lineno 0;
}
pre > code.linenos > .line::before {
counter-increment: lineno;
content: counter(lineno);
display: inline-block;
box-sizing: content-box;
min-width: 2em;
text-align: right;
padding-right: .5em;
margin-right: .5em;
}
.console-line::before {
content: "$ ";
}
.pixelated {
image-rendering: pixelated;
}
.sprites {
margin: 10px;
}