forked from abrignoni/ALEAPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdark-mode.css
111 lines (87 loc) · 2.21 KB
/
dark-mode.css
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
109
110
111
[data-theme="dark"] {
background-color: #111 !important;
color: #eee;
}
[data-theme="dark"] .bg-light {
background-color: #333 !important;
}
[data-theme="dark"] .bg-white {
background-color: #000 !important;
}
[data-theme="dark"] .bg-black {
background-color: #eee !important;
}
/*[data-theme="dark"] .custom-select .background {
color: #bdbdbd !important;
}*/
[data-theme="dark"] .nav-tabs .nav-link.active {
color: #eee;
background-color: #000;
border-top-color: rgb(222, 226, 230);
border-right-color: rgb(222, 226, 230);
border-bottom-color: rgb(0, 0, 0);
border-left-color: rgb(222, 226, 230);
}
[data-theme="dark"] .sidebar .nav-link {
color: #999;
}
[data-theme="dark"] .sidebar .nav-link.active {
color: #007bff;
}
[data-theme="dark"] .table {
color: #bdbdbd;
}
[data-theme="dark"] .pagination .page-item.active .page-link {
color: #fff;
box-shadow: 0 2px 5px 0 rgba(255,255,255,0.16),0 2px 10px 0 rgba(255,255,255,0.12);
}
[data-theme="dark"] .pagination .page-item.disabled .page-link {
color: #414549
}
[data-theme="dark"] .pagination .page-item .page-link:hover {
background-color: #777;
color: #bbb;
}
[data-theme="dark"] .pagination .page-item .page-link {
color: #bbb;
}
[data-theme="dark"] .form-control {
background-color: #555;
color: #eee;
}
[data-theme="dark"] pre {
color: #bdbdbd;
}
/* Table hover */
[data-theme="dark"] .table-hover tbody tr:hover {
background-color: rgba(200, 200, 200, 0.975);
}
/* Table band odd rows */
[data-theme="dark"] .table-striped tbody tr:nth-of-type(odd) {
background-color: rgb(44, 44, 44);
}
[data-theme="dark"] .note {
color: rgb(33, 37, 41)
}
[data-theme="dark"] .list-group-item {
border-right-color: #555;
border-left-color:#555;
border-bottom-color: #555;
border-top-color:#555;
}
[data-theme="dark"] .card {
box-shadow: 0 2px 5px 0 rgba(255,255,255,0.16),0 2px 10px 0 rgba(255,255,255,0.12);
}
[data-theme="dark"] * {
scrollbar-color: #0079D3 #2E3645 !important;
}
* {
scrollbar-width: thin !important;
}
/* For Chrome & Safari
*::-webkit-scrollbar {
width: 10px;
}
[data-theme="dark"] *::-webkit-scrollbar {
background-color: blue;
} */