blob: ff3a830e6b4416c22606b68815c8362bd27fc77a [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
talig8e9c0652017-12-20 14:30:43 +020014$scrollbar-width: 8px;
15$scrollbar-height: 8px;
16/* firefox */
17$ff-scrollbar-width: 17px;
Michael Landoefa037d2017-02-19 12:57:33 +020018/* scrollbar styling for Google Chrome | Safari | Opera */
19::-webkit-scrollbar {
talig8e9c0652017-12-20 14:30:43 +020020 width: $scrollbar-width;
21 height: $scrollbar-height;
Michael Landoefa037d2017-02-19 12:57:33 +020022}
23
24::-webkit-scrollbar-track {
25 background-color: transparent;
26 border-radius: 10px;
27}
28
29::-webkit-scrollbar-thumb {
30 border-radius: 10px;
31 background-color: $light-gray;
32 border-right: 2px solid $content-background-color;
33}
34
35/* Mozilla Firefox currently doesn't support scrollbar styling */
36
37ul {
38 list-style: none;
39}
40
41h1, h2, h3, h4, h5, h6, ul {
42 margin: 0;
43 padding: 0;
44}
45
46input {
47
48 padding: 7px 10px;
49}
50
AviZi280f8012017-06-09 02:39:56 +030051.disabled {
52 opacity: 0.7 !important;
53}
54
Michael Landoefa037d2017-02-19 12:57:33 +020055fieldset {
56 border: none;
57}
58
59fieldset {
60 label {
61 display: inline-block;
62 }
63}
64
65.nav-tabs > li > a:focus,
66.btn:focus,
67.btn:active:focus,
68.btn.active:focus {
69 outline: none;
70}
71
72.box-hover {
73 border: 1px solid $light-blue;
74}
AviZi280f8012017-06-09 02:39:56 +030075
76
77
78