Newer
Older
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
/* variable */
$border-color-dark: #000;
$bg-white-dark: #494959;
$bg-light-dark: #393949;
$link-color-dark: #33aeff;
@import "~bootstrap/scss/bootstrap.scss";
body {
background: #292939;
font-family: 'Lato', Tahoma, Helvetica, sans-serif;
padding: 0 !important;
font-size: 13px;
}
.page-form {
background: rgba(42, 145, 138, 0.1);
border-radius: 4px;
}
.card-header {
background: #cfcfcf;
color: #000;
}
.btn-group-xs > .btn, .btn-xs {
padding: .35rem .4rem;
font-size: .875rem;
line-height: .5;
border-radius: .2rem;
}
table thead tr th, .thead_th {
background-color: #e4e4e4;
font-weight: bold;
border-bottom: 1px solid #d5d5d5;
}
main {
background: #f4f4f4;
}
/* DARK THEME */
main.dark {
background: none;
}
.dark {
color: #ffffff;
}
.dark .page-form {
background: rgba(42, 145, 138, 0.7);
}
.dark .text-secondary {
color: #999 !important;
}
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
.dark table thead tr th, .dark .thead_th {
background-color: #393949;
border-bottom: 1px solid #000000;
}
.dark .border {
border-color: $border-color-dark !important;
}
.dark .border-top {
border-top-color: $border-color-dark !important;
}
.dark .border-right {
border-right-color: $border-color-dark !important;
}
.dark .border-bottom {
border-bottom-color: $border-color-dark !important;
}
.dark .border-left {
border-left-color: $border-color-dark !important;
}
.dark .bg-white {
background-color: $bg-white-dark !important;
}
.dark .bg-light {
background-color: $bg-light-dark !important;
}
.dark .card {
border-color: $border-color-dark !important;
}
.dark .card-header {
background: #393949;
color: #fff;
}
.dark .list-group-item {
background-color: $bg-white-dark !important;
border-color: $border-color-dark;
}
.dark .alert-light {
color: #ffffff !important;;
background-color: #000 !important;
border-color: $border-color-dark;
}
.dark a, .dark .btn-link {
color: $link-color-dark !important;
}
.dark .shadow {
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.35) !important;
}