aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/index.scss
blob: 9d6afc45a6a78443626b40585af0000a66038b19 (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 {
  font-family: "Fira Code", monospace;
  font-size: 100%;
  height: 100vh;
  margin: 0;
  color: $color-primary-4;
  background-color: $color-primary-2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

pre {
  font-family: "Fira Code", monospace;
  font-size: 14px;
}

a {
  color: $color-primary-4;

  &:hover {
    text-decoration: none;
    color: $color-primary-4;
  }
}

/* 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 {
    border: none;
    background-color: $color-primary-2;
  }

  .modal-footer {
    border: none;
  }
}

.table {
  color: $color-primary-4;
}

.text-muted {
  color: $color-primary-4 !important;
}

.popover-header {
  color: $color-primary-1;
}