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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
// disable gutter
$grid-gutter-width: 0;
$base-font-size: 1rem;
$font-family-monospace: monospace;
$headings-margin-bottom: 0;
// basic functionality
@import "bootstrap/scss/_functions.scss";
@import "bootstrap/scss/_variables.scss";
@import "bootstrap/scss/_variables-dark.scss";
@import "bootstrap/scss/_maps.scss";
@import "bootstrap/scss/_mixins.scss";
@import "bootstrap/scss/_utilities.scss";
// added component
@import "bootstrap/scss/_root.scss";
@import "bootstrap/scss/_containers.scss";
@import "bootstrap/scss/_nav.scss";
@import "bootstrap/scss/_navbar.scss";
@import "bootstrap/scss/_grid.scss";
@import "tree.scss";
// overwrite to reduce the ammount of css generated by loading all utilities
$utilities: (
"order": (
responsive: true,
property: order,
values: (
first: -1,
0: 0,
1: 1,
2: 2,
3: 3,
4: 4,
5: 5,
last: 6,
),
),
);
@import "bootstrap/scss/utilities/_api.scss";
body {
// prevents wierd font resizing on overflow
-webkit-text-size-adjust: 100%;
font-family: $font-family-monospace;
font-size: $base-font-size;
margin: 0;
}
.navbar-nav {
margin-top: 0px
}
.event-list {
margin-bottom: 1rem;
}
.event:first-child {
margin-top: 0;
}
.event {
text-overflow: ellipsis;
overflow: hidden;
padding: 0.5rem;
margin: 0.5rem 0;
background: #f8f9fa;
}
.selected {
text-decoration: underline;
}
.event > h4 {
margin: 0;
}
.event > p {
margin: 0.5rem 0;
}
.code-view {
display: grid;
overflow-x: auto;
}
.logs {
>div {
background: #f8f9fa;
}
>div {
padding: 5px;
margin: $spacer;
}
@include media-breakpoint-down(md) {
>div {
margin: $spacer 0 $spacer 0;
}
}
pre {
font-size: $base-font-size;
margin: 0;
}
}
.logs>div>div:first-child {
margin-bottom: 15px;
}
.logs>div>div:last-child {
margin-top: 15px;
}
#about {
padding: 0 $spacer $spacer $spacer;
> p:first-child {
margin-top: 0
}
@include media-breakpoint-down(md) {
padding: $spacer;
max-width: calc(100% - calc(2 * #{$spacer}));
}
}
|