-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
156 lines (131 loc) · 2.45 KB
/
style.css
File metadata and controls
156 lines (131 loc) · 2.45 KB
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
html {
position: relative;
min-height: 100%;
}
body {
margin-bottom: 60px; /* Margin bottom by footer height */
font-size: 0.9rem;
}
a {
text-decoration: none;
color: #337ab7;
}
a:hover {
text-decoration: underline;
color: #23527c;
}
pre {
background-color: #f8f9fa; /* Bootstrap 5 light */
padding: 1rem;
border-radius: 0.375rem;
border: 1px solid #dee2e6;
font-family: monospace;
font-size: 0.875rem;
}
code {
background-color: #f9f2f4;
color: #c7254e;
border-radius: 4px;
padding: 0.2em 0.4em;
font-size: 0.875em;
font-family: monospace;
}
.nav-tabs a {
text-decoration: none;
color: #337ab7;
font-size: 1rem;
}
.nav-tabs a:hover {
text-decoration: none;
color: #23527c;
}
.header img {
max-height: 40px;
vertical-align: middle;
margin-right: 10px;
}
.header h1 {
display: inline-block;
vertical-align: middle;
margin: 0;
font-size: 24px;
margin-top: 1rem;
margin-bottom: 1rem;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 30px; /* Set the fixed height of the footer here */
line-height: 10px; /* Vertically center the text there */
background-color: #f5f5f5;
}
.login_info {
position: absolute;
top: 20px;
right: 20px;
}
.login-page {
text-align: center;
margin: 20px auto;
border: 1px solid #ccc; /* Light grey border */
border-radius: 12px; /* Rounded corners */
padding: 20px; /* Space inside the border */
width: 640px; /* Optional: fixed width */
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}
.login-page img {
max-height: 160px;
}
.export_csv {
position: absolute;
top: 120px;
right: 20px;
}
.value {
white-space:pre-wrap;
}
input.form-control,
select.form-select,
textarea.form-control {
font-size: 0.8rem;
padding: 0.25rem 0.25rem;
height: auto;
}
.table td,
.table th {
padding: 0.25rem 0.25rem;
vertical-align: middle;
}
@media (prefers-color-scheme: dark) {
a {
color: #9ecbff;
}
a:hover {
color: #c5e1ff;
}
.nav-tabs a {
text-decoration: none;
color: #9ecbff;
font-size: 1rem;
}
.nav-tabs a:hover {
text-decoration: none;
color: #c5e1ff;
}
pre {
background-color: #1e1e1e;
border: 1px solid #3a3b3c;
color: #e0e0e0;
}
.footer {
background-color: #2c2c2c;
color: #e0e0e0;
}
.login-page img {
filter: invert(1);
}
.header img {
filter: invert(1);
}
}