_general.scss
609 Bytes
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
html {
font-weight: 100;
font-size: $font-size-initial;
}
body {
overflow-x: hidden;
color: $text-color;
}
html,
body,
#app {
height: 100%;
}
a,
.dropdown-item,
.btn {
cursor: pointer;
transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out, border-color 0.1s ease-in-out;
font-family: $font-family-base;
}
a:hover {
color: inherit;
text-decoration: none;
}
th {
font-weight: 600;
}
label {
font-weight: 400;
}
strong {
font-weight: 700;
}
ul ul,
ol ul {
list-style: none;
}
ul,
ol {
list-style: none;
padding-left: 0;
}
h1 small {
font-size: 68%;
}