aboutsummaryrefslogtreecommitdiff
path: root/scss/main.scss
blob: 9f17dadab978cf2bef7863c4ff6a292d87e107a8 (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
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
// 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;
}

.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:nth-child(odd) {
    background: #f8f9fa;
  }

  >div {
    padding: 10px;
  }

  pre {
    white-space: break-spaces;
    margin: 0;
  }
}

.logs pre::first-line {
  font-weight: bold;
}

@include media-breakpoint-down(sm) {
  // add extra spacing then list is seen on vertical
  .logs>div>div:first-child {
    margin-bottom: 15px;
  }
  .logs>div>div:last-child {
    margin-top: 15px;
  }
}