-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
59 lines (50 loc) · 1.38 KB
/
styles.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
body {
font-family: 'Poppins', Arial, Helvetica, sans-serif;
background-color: #0D1117;
color: #d8dee9;
}
:root {
--red: #c22b3d;
--red-rgb: rgb(194, 43, 61);
--blue: #4b6382;
--blue-rgb: rgb(75, 99, 130);
--dark-blue: #101721;
--dark-blue-rgb: rgb(16, 23, 33);
--white: #ffffff;
--white-rgb: rgb(255, 255, 255);
--bs-danger-rgb: var(--red-rgb);
}
.card-header a:hover {
color: var(--red) !important;
}
.border-danger {
border-color: var(--bs-danger-rgb) !important;
}
.link-dark {
color: var(--blue-rgb) !important;
-webkit-text-decoration-color: var(--blue-rgb) !important;
text-decoration-color: var(--blue-rgb) !important;
}
.link-dark:focus, .link-dark:hover {
color: var(--blue-rgb) !important;
-webkit-text-decoration-color: var(--blue-rgb) !important;
text-decoration-color: var(--blue-rgb) !important;
}
.link {
color: var(--white-rgb) !important;
-webkit-text-decoration-color: var(--white-rgb) !important;
text-decoration-color: var(--white-rgb) !important;
}
.list-item:focus, .list-item:hover {
color: var(--white-rgb) !important;
-webkit-text-decoration-color: var(--white-rgb) !important;
text-decoration-color: var(--white-rgb) !important;
background-color: var(--dark-blue-rgb);
}
.list-item, .list-item a {
height: 1.5em;
}
.list-item a img {
width: 1em;
height: 1em;
}