-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (78 loc) · 1.41 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
:root {
--grey: #000000;
--red: #ff5555;
--green: #50fa7b;
--yellow: #f0fa8b;
--blue: #bd92f8;
--magenta: #ff78c5;
--cyan: #8ae9fc;
--white: #bbbbbb;
--background: #1e1f28;
--foreground: #f8f8f2;
}
body {
font-size: 30px;
background-color: var(--background) !important;
color: var(--foreground) !important;
}
#header {
background-color: var(--background) !important;
color: var(--foreground) !important;
}
p.catch-phrase {
color: var(--blue);
}
a {
margin-left: 20px;
}
a.external {
color: var(--green);
}
a.internal {
color: var(--green);
filter: brightness(70%) saturate(50%);
}
a.toc {
color: var(--red);
}
a.totoc {
color: var(--red);
filter: brightness(70%) saturate(50%);
}
a.rule {
color: var(--magenta);
}
a.keyword {
color: var(--yellow);
}
a.function, font.function {
color: var(--blue);
}
a.procedure, font.procedure{
color: var(--cyan);
}
code.keyword_def {
color: var(--yellow);
filter: brightness(70%) saturate(50%);
}
font.rule_def {
color: var(--magenta);
filter: brightness(70%) saturate(50%);
}
font.character {
color: var(--yellow);
filter: brightness(50%) saturate(50%);
}
table, thead, th, tr, td {
border: 1px solid grey;
border-collapse: collapse;
}
.sticky {
position: sticky;
background: var(--background);
border: 2px solid;
border-color: var(--white);
border-radius: 30px;
padding: 5px;
z-index: 1000;
}