summaryrefslogtreecommitdiff
path: root/src/assets/styles/bmc/_sila/_base.scss
blob: 138f623f48ca979ae0889713fd255d1a9a22a2e1 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
//
// Scrollbars:
//
/* W3C standard: Firefox only */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(12,32,64,.7) transparent;
}

/* For Chrome/Edge/Safari */
*::-webkit-scrollbar {
  height: 3px;
  width: 3px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(12,32,64,.7);
  border-radius: 2px;
  border: 2px solid transparent;
}

//
// Headers:
//
h1,
.h1 {
  font-size: 1.5rem !important;
  font-weight: 500;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: 1.25rem !important;
  font-weight: 500;
  line-height: 1.2;
}

h3,
.h3 {
  font-size: 1.25rem !important;
  font-weight: 400;
  line-height: 1.2;
}

h4,
.h4 {
  font-size: 1.15rem !important;
  font-weight: 400;
  line-height: 1.2;
}

h5,
.h5 {
  font-size: 1rem !important;
  font-weight: 500;
  line-height: 1.2;
}

h6,
.h6, label {
  font-size: 0.825rem !important;
  font-weight: 500;
  line-height: 1.2;
}

.navbar-brand {
  font-size: 1.4rem !important;
}

.nav-link--current{
  background-color: $red-light-background !important;
  color: $red !important;
  &:hover,
  &:focus {
    background-color: $red-light-background !important;
    color: $red !important;
  }
}

.btn-link:active, .nav-link:active {
  background-color: $red-light-background !important;
  color: $red !important;
}

.app-header .navbar-text, .app-header .nav-link, .app-header .btn-link {
  &:hover {
    background-color: $red-40 !important;
    border-radius: $border-radius;
  }
  &:active {
    background-color: $red-active !important;
    border-radius: $border-radius;
  }
  &:focus {
    outline: 0;
  }
}

.disabledDiv {
  pointer-events: none;
  opacity: 0.3;
}