-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.css
123 lines (100 loc) · 1.7 KB
/
index.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
body {
font-family: sans-serif;
font-size: 16px;
margin: 0 !important;
}
header {
background-image: url("./assets/tile.svg");
background-color: #4D9CB4;
background-size: 4%;
background-repeat: repeat;
width: 100%;
}
header img {
width: 70%;
opacity: 0.9;
}
footer {
padding: 1rem;
}
th:nth-child(4) {
width: 25% !important;
}
th:nth-child(8) {
width: 330px !important;
}
.container-fluid {
margin-top: 2rem;
}
.bademantel {
width: 8.3%;
position: absolute;
top: 0;
left: 0;
}
.dataTable-top,
.dataTable-selector {
z-index: 999999999;
}
.center {
display: flex;
width: 100%;
justify-content: center;
}
.dataTable-input {
border: 0.01rem solid #ccc;
}
.dataTable-selector {
background-color: transparent;
border: 0.01rem solid #ccc;
border-radius: 0;
}
select {
max-width: 100%;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
@media only screen and (max-width:48rem) {
header img {
width: 180%;
}
.bademantel {
width: 15%;
}
}
@media (prefers-color-scheme: dark) {
:root {
--light: #CEC9C8;
--dark: #222222;
}
body,
td {
color: var(--light);
background-color: var(--dark);
}
.dataTable-sorter {
color: var(--light) !important;
}
.dataTable-pagination a {
color: var(--light);
}
.dataTable-pagination .active a,
.dataTable-pagination li:hover a {
color: black;
}
.dataTable-sorter::before {
border-top-color: var(--light);
}
.dataTable-sorter::after {
border-bottom-color: var(--light);
}
.dataTable-input {
background: var(--dark);
color: var(--light);
border: 0.01rem solid #ccc;
}
.dataTable-selector {
color: var(--light);
}
}