blob: f57579ac37605a06ed15ba86c2f689c926d07f4c (
plain)
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
|
// 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";
body {
font-family: $font-family-monospace;
font-size: $base-font-size;
margin: 0;
}
.card-body {
padding: 5px;
}
.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;
}
|