This repository has been archived by the owner on Feb 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (104 loc) · 2.05 KB
/
style.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
124
/* Dark Background */
html, body {
background-color: #212529;
}
/* Footer */
html {
position: relative;
min-height: 100%;
}
body {
margin-bottom: 60px;
}
footer {
position: absolute !important;
bottom: 0;
width: 100%;
height: 60px;
}
footer > .navbar-nav {
flex-direction: row;
}
footer > .navbar-nav .nav-link {
padding-right: .5rem;
padding-left: .5rem;
}
/* Gulag Mascot/Avatar */
.gulag-avatar {
background-image: url("assets/images/gulag-avatar.png");
background-repeat: no-repeat;
width: 512px;
height: 363px;
margin: 0;
padding: 0;
}
/* Clean Table Style */
.table-dark td, .table-dark th, .table-dark thead th {
border-color: transparent;
}
/* Navigation Button Link */
.link-button {
background: none;
border: none;
text-decoration: none;
cursor: pointer;
}
.link-button:focus {
outline: none;
}
/* Searchbar */
.searchbar {
margin-bottom: auto;
margin-top: auto;
height: 40px;
border-radius: 30px;
padding: 10px;
}
.searchbar:hover {
background-color: white;
transition: background-color 0.4s ease-in-out;
}
.search_input {
border: 0;
outline: 0;
width: 0;
color: transparent;
caret-color: transparent;
background: none;
line-height: 2px;
transition: width 0.4s linear;
}
.searchbar:hover > .search_input {
padding: 0 10px;
width: 350px;
caret-color: rgba(0, 0, 0, 0.5);
color: rgba(0, 0, 0, 0.5);
transition: width 0.4s linear;
}
.searchbar:hover > .search_icon {
color: rgba(0, 0, 0, 0.5) !important;
text-decoration: none;
transition: color 0.4s ease-in-out;
}
.search_icon {
height: 20px;
width: 20px;
float: right;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
color: rgba(255, 255, 255, 0.5) !important;
text-decoration: none;
}
/* Move reCAPTCHA v3 Badge */
.grecaptcha-badge {
bottom: 80px !important;
}
/* Admin Panel */
.sidebar {
height: 100vmin;
}
.admin-stats > .btn {
width: 14vw;
}