aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/index.scss
blob: 5c18095271ea5720c7be9ee02eac7fb90d0abd28 (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
80
81
82
83
84
85
86
87
88
@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: 100%;
  max-height: 100%;
}

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

button {
  :focus {
    outline: none;
    box-shadow: none;
  }
}

.btn {
  border-radius: 0;
  color: $color-primary-4;
}

.btn-primary {
  margin-left: 20px;
  padding: 5px 12px;
  background-color: $color-secondary-2;
  font-weight: 500;
  border: 0;
  border-bottom: 5px solid $color-secondary-1;

  color: $color-secondary-4;
  outline:none;


  :focus, :active {
    outline: none;
    box-shadow: none;
  }

}

.btn-primary:hover {
  background-color: $color-secondary-1;
  border-color: $color-secondary-1;
  outline: none;
}

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;
}