-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (45 loc) · 924 Bytes
/
style.css
File metadata and controls
55 lines (45 loc) · 924 Bytes
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
body {
background-color: #121212;
color: #ffffff;
}
.card {
background-color: #1e1e1e;
border-color: #0d6efd;
}
.form-control, .form-select {
background-color: #2d2d2d;
border-color: #0d6efd;
color: #ffffff !important;
}
.form-control:focus, .form-select:focus {
background-color: #2d2d2d;
border-color: #0d6efd;
color: #ffffff;
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::placeholder {
color: #8a8a8a;
}
.progress {
background-color: #2d2d2d;
height: 1.5rem;
}
.progress-bar {
font-size: 0.875rem;
line-height: 1.5rem;
}
.list-group-item {
background-color: #1e1e1e;
border-color: #0d6efd;
color: #ffffff;
}
.navbar {
border-bottom: 1px solid #0d6efd;
}
.card-header.bg-success {
background-color: #198754 !important;
}
/* Custom text colors */
.text-light, .form-label {
color: #ffffff !important;
}