forked from Winkeladvokat/GExtension_dark-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
css.css
133 lines (101 loc) · 3.2 KB
/
css.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
@media (prefers-color-scheme: dark) {
body{
background: #1b1b1b;
color: #fff;
}
.container{
color: #fff;
}
.donation_main{
background-color: rgba(0, 0, 0, 0.7);
border: 8px solid #000;
}
.checkbox .checkbox-material .check{
border: 1px solid rgba(255, 255, 255, 0.9);
}
.navbar-right .dropdown-menu, .dropdown-menu, .modal-content, .btn.btn-default{
background-color: rgba(0, 0, 0, 0.9);
}
.table-striped tbody tr:nth-of-type(2n+1){
background-color: rgba(0, 0, 0, 1);
}
.panel{
color: #fff;
background-color: rgb(86 93 100);
}
#main_notifications{
background-color: #000;
color: #fff;
}
label, caption, .dropdown-menu li a, .btn.btn-primary.btn-simple, .navbar .navbar-nav li a.btn.btn-primary.btn-simple, .form-control, .btn.btn-primary.btn-simple:focus, .btn.btn-primary.btn-simple:hover, a.list-group-item, a, a:hover, a:focus, .box-title p, .box-header i, .form-group label.control-label, .panel-default .panel-heading, .form-group label, .input-group-addon{
color: #fff;
}
.table tbody tr.active th, .panel .panel-heading, .panel.panel-default .panel-heading, .panel-footer{
background-color: #000;
}
.box-content, .list-group-item{
color: #fff;
background-color: rgba(0, 0, 0, 0.5);
border: 1px solid rgba(0, 0, 0, 0.7);
}
.box{
border-color: rgba(0, 0, 0, 0.7);
background-color: rgba(0, 0, 0, 0.0);
}
.box-header{
border-color: rgba(0, 0, 0, 0.7);
background-color: rgba(0, 0, 0, 1);
}
.table-hover tbody tr:hover, .table-hover tbody tr.active:hover th{
background-color: rgba(0, 0, 0, 0.7);
}
.note-editor.note-frame .note-editing-area .note-editable{
background-color: rgba(0, 0, 0, 1);
}
.note-editor.note-frame .note-editing-area .note-editable{
color: #fff;
background-color: rgb(35, 35, 35);
}
.pager li a, .pager li a:hover, .pricing-head h4{
background-color: rgba(0,0,0,0);
}
.table tbody tr.success td{
background-color: #4caf50;
}
.table tbody tr.danger td{
background-color: #f44336;
}
.table tbody tr.warning td{
background-color: #fbc02d;
}
.datepicker p:hover, .datepicker thead tr:first-child th:hover, option{
background-color: #555;
}
.table-hover tbody tr.danger:hover td{
background-color: rgb(255, 75, 75);
}
.table-hover tbody tr.warning:hover td{
background-color: rgb(255, 204, 77);
}
.table-hover tbody tr.success:hover td{
background-color: rgb(91, 192, 95);
}
#main_footer_center{
padding-bottom: 20px;
}
.fa-remove:before, .fa-close:before, .fa-times:before {
color: white;
}
.table tbody tr.active th {
background-color: #1565c0;
}
.table>tbody+tbody {
border-top: 1px solid #ddd;
}
.modal-content {
background: linear-gradient(to right,#474d52, #1256a3ed);
}
.table-hover tbody tr:hover {
background-color: rgb(45 86 133 / 91%);
}
}