blob: 9ba23de8e7ef0499e0c10ee87632e39c8dcc51b4 (
plain) (
blame)
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
|
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500&display=swap');
@import-normalize;
@import 'colors.scss';
body {
margin: 0;
font-family: 'Fira Code', monospace;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-color: $color-primary-2;
color: $color-primary-4;
height: 100vh;
font-size: 100%;
}
pre {
font-family: 'Fira Code', monospace;
font-size: 14px;
}
a {
color: $color-primary-4;
&:hover {
color: $color-primary-4;
text-decoration: none;
}
}
/* width */
::-webkit-scrollbar {
width: 12px;
}
/* Track */
::-webkit-scrollbar-track {
background: $color-primary-0;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: $color-primary-1;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: $color-secondary-2;
}
.clickable {
cursor: pointer;
}
.modal-content {
background-color: $color-primary-0;
.modal-header {
background-color: $color-primary-2;
border: none;
}
.modal-footer {
border: none;
}
}
.table {
color: $color-primary-4;
}
.text-muted {
color: $color-primary-4 !important;
}
.popover-header {
color: $color-primary-1;
}
|