blob: e901db000e8f7666aecc691ce26f9399bf61cdf2 [file] [log] [blame]
Michael Landoefa037d2017-02-19 12:57:33 +02001html {
2 font-size: 100%;
3 height: 100%;
4}
5
6body {
7 /* scrollbar styling for Internet Explorer */
8 scrollbar-face-color: $scroll-bar-color;
9 scrollbar-track-color: $scroll-bar-color;
10 height: 100%;
11 @extend %noselect;
12}
13
14/* scrollbar styling for Google Chrome | Safari | Opera */
15::-webkit-scrollbar {
16 width: 8px;
17 height: 8px;
18}
19
20::-webkit-scrollbar-track {
21 background-color: transparent;
22 border-radius: 10px;
23}
24
25::-webkit-scrollbar-thumb {
26 border-radius: 10px;
27 background-color: $light-gray;
28 border-right: 2px solid $content-background-color;
29}
30
31/* Mozilla Firefox currently doesn't support scrollbar styling */
32
33ul {
34 list-style: none;
35}
36
37h1, h2, h3, h4, h5, h6, ul {
38 margin: 0;
39 padding: 0;
40}
41
42input {
43
44 padding: 7px 10px;
45}
46
AviZi280f8012017-06-09 02:39:56 +030047.disabled {
48 opacity: 0.7 !important;
49}
50
Michael Landoefa037d2017-02-19 12:57:33 +020051fieldset {
52 border: none;
53}
54
55fieldset {
56 label {
57 display: inline-block;
58 }
59}
60
61.nav-tabs > li > a:focus,
62.btn:focus,
63.btn:active:focus,
64.btn.active:focus {
65 outline: none;
66}
67
68.box-hover {
69 border: 1px solid $light-blue;
70}
AviZi280f8012017-06-09 02:39:56 +030071
72
73
74