This repository has been archived by the owner on Mar 5, 2024. It is now read-only.
forked from EqualifyEverything/equalify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.css
107 lines (106 loc) · 1.83 KB
/
theme.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
body{
background-color: var(--bs-secondary-bg);
}
#reports_content{
min-height: 60vh;
}
.bi{
vertical-align: -.125em;
pointer-events: none;
fill: currentColor;
}
.me-2{
margin-right: .5rem !important;
}
a.active{
background-color: var(--bs-secondary-color) !important;
}
pre code{
white-space: break-spaces;
word-break: break-word !important;
}
header .nav-link{
color: #212529;
}
header .nav-item {
font-size: var(--bs-navbar-brand-font-size);
}
footer .nav-link{
text-decoration: underline;
}
footer nav li:before{
content: '|';
padding: 0 4px 0 10px;
}
footer nav li:first-of-type:before{
content: ' ';
padding: 0;
}
.fs-7{
font-size: .9em;
}
#brand{
text-transform: uppercase;
letter-spacing: .035em;
}
.badge .spinner-border-sm{
--bs-spinner-width: .7rem;
--bs-spinner-height: 0.7rem;
}
#archived{
min-height: 1.5em;
min-width: 2.5em;
}
.snippet-input{
width:100%;
}
.snippet-delete{
margin-right: 1em;
}
#reports_filter {
overflow: hidden;
}
#reports_filter a{
width: 200px;
position: relative;
background: transparent !important;
}
@media (max-width: 768px) {
#reports_filter a{
width: auto;
}
}
#reports_filter a:before{
position: absolute;
content: '';
bottom: -2em;
left: 0;
width: 100%;
height: 1em;
border-radius: 6px;
transition: bottom .4s;
}
#reports_filter a.active:before{
bottom: -1em;
}
#reports_filter a:hover:before{
bottom: -1.25em;
}
#reports_filter a#equalified:before{
background: green;
}
#reports_filter a#active:before{
background: red;
}
#reports_filter a#ignored:before{
background: gray;
}
.btn-outline-secondary:hover code{
color: white !important;
}
a.row{
text-decoration: none;
}
a.row:hover{
background-color: var(--bs-secondary-bg)
}