-
Notifications
You must be signed in to change notification settings - Fork 0
/
x-az.css
57 lines (56 loc) · 1.04 KB
/
x-az.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
body{
background: #e9f1e9;
}
a,a:hover{
color: #296324;
text-decoration:none;
}
.navbar{
background: #e9f1e9;
}
.glass{
border: 2px solid #296324;
line-height: 2;
border-radius: 0px;
}
.darkMode{
display: none;
}
@media (prefers-color-scheme: dark){
.darkMode{
display: inline;
}
img[src="./logo.png"]{
display: none;
}
body{
background: #202420;
}
.navbar{
background: #202420;
}
.navbar-brand,.nav-link,table,.btn[disabled]{
color: white!important;
}
.form-control,.form-control:focus{
color: white;
background: #202420;
}
.table-success, .table-success>td, .table-success>th{
background: #202420;
}
a,a:hover{
color: #95ad95;
text-decoration:none;
}
.glass{
border: 2px solid #95ad95;
background: black;
color: white;
line-height: 2;
border-radius: 0px;
}
}
.btn,.form-control,.input-group-text,.badge,.alert{
border-radius: 0px;
}