-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
196 lines (163 loc) · 3.04 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--dark-blue: #0d0630;
--medium-blue: #384e77;
--light-blue: #8ba3be;
--lighter-blue: #add8e6;
}
body,
#body-edit,
#container,
#header,
#title-main button,
#footer {
background-color: var(--dark-blue);
color: var(--lighter-blue);
font-family: 'Anonymous Pro', monospace;
}
body a {
color: var(--lighter-blue);
text-decoration: none;
}
#header-edit span,
#header span {
font-size: 30px;
font-weight: bold;
}
#input-header,
#input-header input {
width: 20%;
height: 35px;
}
#input-header {
width: fit-content;
}
#input-header button {
height: 105%;
background-color: var(--light-blue);
transition: 200ms ease;
}
#input-header button:hover {
color: snow;
filter: brightness(0.8);
transition: 400ms ease;
}
#input-header input {
height: 100%;
border-radius: 0 8px 8px 0;
}
#navigation-bar-header {
background-color: var(--medium-blue);
padding: 0.1rem 0;
border-radius: 12px 12px 0 0;
}
#navigation-bar-header ul {
list-style: none;
}
#navigation-bar-header ul li {
transition: 200ms linear;
}
#navigation-bar-header ul li:hover {
scale: 1.1;
cursor: pointer;
transition: 200ms linear;
text-decoration: overline;
font-weight: 600;
}
#main,
#main-edit {
background-color: var(--dark-blue);
width: 100%;
}
#main #title-main {
width: 69%;
margin-right: 0;
color: var(--lighter-blue);
}
#title-main button {
color: var(--lighter-blue);
transition: 250ms ease;
border: 1px solid var(--lighter-blue);
text-decoration: none;
}
#title-main button:hover {
color: var(--dark-blue);
border: 1px solid var(--dark-blue);
background-color: var(--lighter-blue);
transition: 250ms ease;
}
#table-container {
height: 600px;
font-family: sans-serif;
}
#table-container::-webkit-scrollbar {
width: 10px;
}
#table-container::-webkit-scrollbar-track {
background: var(--light-blue);
}
#table-container::-webkit-scrollbar-thumb {
background: var(--medium-blue);
}
#table-container::-webkit-scrollbar-thumb:hover {
background: #1d3461;
cursor: pointer;
}
#table th,
#table td {
text-align: center;
}
#table th,
#table td:nth-child(-n + 4) {
padding-top: 25px;
}
#table button:hover,
#footer nav a:hover {
scale: 1.1;
color: #384e77;
}
#footer section:last-child {
background-color: var(--medium-blue);
border-radius: 0 0 12px 12px;
color: var(--lighter-blue);
width: 100%;
}
#footer section a {
font-size: 16px;
}
#footer nav a {
color: var(--lighter-blue);
}
@media only screen and (max-width: 600px) {
.email-col {
display: none;
}
#header-edit section a,
#header section a {
flex-direction: column;
align-items: center;
}
}
@media only screen and (min-width: 200px) and (max-width: 575px) {
.dropdown button {
width: 100%;
}
#main #title-main {
width: 100%;
}
}
@media only screen and (max-width: 900px) {
#main #title-main {
width: 100%;
}
}
@media only screen and (min-width: 600px) and (max-width: 2000px) {
#footer {
bottom: 0;
position: fixed;
}
}