-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathzl_theme.css
249 lines (212 loc) · 7.14 KB
/
zl_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
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
/* Blue Dimension - hybrid theme */
/* reference palette abstraction layer. */
@import url(/zerolith/public/zl_paletteMaterialPlus.css);
/* Load your fonts here. */
@font-face
{
font-family: 'inter';
font-style: normal;
font-weight: 100 700;
font-display: swap;
src: url('/zerolith/public/3p/intervar.woff2') format('woff2');
font-named-instance: 'Regular';
}
@font-face
{
font-family: 'inter';
font-style: italic;
font-weight: 100 700;
font-display: swap;
src: url('/zerolith/public/3p/intervaritalic.woff2') format('woff2');
font-named-instance: 'Italic';
}
/* IDE-like <pre> look for debugger */
@font-face
{
font-family: 'Source Code Pro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url('/zerolith/public/3p/SourceCodePro.ttf') format('ttf');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
pre { font-family: 'Source Code Pro', monospace !important; }
/* variables for the entire theme */
:root
{
/* coloring */
--zl_white: #FFF;
--zl_whiteDark: #F7F7F7; /* alt TD color */
--zl_whiteDarkDark:#F1F1F1; /* alt TD color */
--zl_greyLight: #E9E9E9; /* TD left border */
--zl_grey: #CACACA; /* TD top border */
--zl_greyDark: #AFAFAF;
--zl_blackLight: #777; /* General text color */
--zl_black: #444; /* General text color */
--zl_blackDark: #000; /* Jet black */
--zl_linkLight: #dce9f9;
--zl_link: #7a9acb;
--zl_linkMid: #85A5D9;
--zl_linkDark: #3264af;
--zl_linkDarkDark: #2555af; /* for lower TH gradient */
--zl_th: #7a9acb;
--zl_thDark: #3264af;
--zl_thDarkDark: #2555af;
--zl_thText: var(--zl_white);
--zl_accentLight: var(--amber1);
--zl_accent: var(--amber2);
--zl_accentMid: var(--amber5);
--zl_accentDark: var(--yellow9);
--zl_accentDarkDark:var(--amber10);
--zl_accent2Light: var(--brown1);
--zl_accent2: var(--brown2);
--zl_accent2Mid: var(--brown5);
--zl_accent2Dark: var(--brown7);
--zl_accent2DarkDark:var(--brown9);
--zl_accent3Light: var(--purpleDeep1);
--zl_accent3: var(--purpleDeep2);
--zl_accent3Mid: var(--purpleDeep5);
--zl_accent3Dark: var(--purpleDeep7);
--zl_accent3DarkDark:var(--purpleDeep9);
--zl_warnLight: var(--yellow2);
--zl_warn: var(--yellow3);
--zl_warnMid: var(--yellow5);
--zl_warnDark: var(--yellow9);
--zl_warnDarkDark: var(--yellow10);
--zl_errLight: hsl(355, 90%, 94%);
--zl_err: var(--red3);
--zl_errMid: var(--deepOrange4);
--zl_errDark: var(--red7);
--zl_errDarkDark:var(--red8);
--zl_okLight: hsl(124, 37%, 90%);
--zl_ok: var(--green3);
--zl_okMid: var(--greenLight4);
--zl_okDark: var(--green7);
--zl_okDarkDark: var(--green8);
--zl_fadeB90: rgba(0,0,0,.9);
--zl_fadeB75: rgba(0,0,0,.75);
--zl_fadeB66: rgba(0,0,0,.66);
--zl_fadeB50: rgba(0,0,0,.5);
--zl_fadeB33: rgba(0,0,0,.33);
--zl_fadeB25: rgba(0,0,0,.25);
--zl_fadeB17: rgba(0,0,0,.17);
--zl_fadeB10: rgba(0,0,0,.10);
--zl_fadeB7: rgba(0,0,0,.075);
--zl_fadeB5: rgba(0,0,0,.05);
--zl_fadeB0: rgba(0,0,0,0);
--zl_fadeW90: rgba(255,255,255,.9);
--zl_fadeW75: rgba(255,255,255,.75);
--zl_fadeW66: rgba(255,255,255,.66);
--zl_fadeW50: rgba(255,255,255,.5);
--zl_fadeW33: rgba(255,255,255,.33);
--zl_fadeW25: rgba(255,255,255,.25);
--zl_fadeW17: rgba(255,255,255,.17);
--zl_fadeW10: rgba(255,255,255,.1);
--zl_fadeW7: rgba(255,255,255,.075);
--zl_fadeW5: rgba(255,255,255,.05);
--zl_fadeW0: rgba(255,255,255,0);
/* Font Definitions. */
--zl_fontFace: inter;
--zl_fontBoldWeight: 600;
--zl_font1: 13px;
--zl_font2: 15px;
--zl_font3: 16px;
--zl_font4: 18px;
--zl_font5: 24px;
--zl_font: var(--zl_font3); /* default font size */
--zl_fontPre: 12px; /* for code sections. */
--zl_linkWeight:600; /* default weight of links */
/* Spacing - defines padding and border radii */
--zl_spc0: 0px; /* leave this at 0px! */
--zl_spc1: 3px;
--zl_spc2: 5px;
--zl_spc3: 7px;
--zl_spc4: 10px;
--zl_spc5: 20px;
--zl_spc6: 30px;
--zl_radDefault: 3px; /* default radius for items unless otherwise set to one of the spc sizes */
--zl_spcDefault: var(--zl_spc3); /* default space */
/* precalculate negative margin values */
--zl_spc-1: calc(-1 * var(--zl_spc1));
--zl_spc-2: calc(-1 * var(--zl_spc2));
--zl_spc-3: calc(-1 * var(--zl_spc3));
--zl_spc-4: calc(-1 * var(--zl_spc4));
--zl_spc-5: calc(-1 * var(--zl_spc5));
--zl_spc-6: calc(-1 * var(--zl_spc6));
/* Misc */
--zl_iconSize: 18px;
--zl_miconSize: 24px;
--zl_hoverDark: 1.2;
--zl_pageBGcolor: #F4F4F4;
--zl_siteBGcolor: var(--zl_grey);
--zl_sideNavWidth: 185px;
--zl_siteMaxWidth: 1255px;
/* --------- Deprecation station --------- */
--zl_errorLight: var(--red1); /* error is deprecated */
--zl_error: var(--red3);
--zl_errorMid: var(--deepOrange4);
--zl_errorDark: var(--red7);
--zl_errorDarkDark:var(--red7);
--zl_space1: 3px;
--zl_space2: 5px;
--zl_space3: 7px;
--zl_space4: 10px;
--zl_space5: 20px;
--zl_space: var(--zl_space3); /* default space size */
--zl_borderRadius: 3px; /* DEPRECATED */
--zl_borderRadiusBig: 4px; /* DEPRECATED */
}
/* Manually define hue shifts for Material 2 tone icons */
/* Material Icon Reference: https://fonts.google.com/icons?selected=Material+Icons */
.zlt_miconTT.tableNotify, .zlt_micon.tableNotify, .zlt_miconO.tableNotify /* mini table notification icon */
{ opacity:0.6; font-size:18px !important; }
.zlt_miconTT.white, .zlt_micon.white, .zlt_miconO.white /* white */
{ filter: invert(0); font-size:1.4rem; }
.zlt_miconTT.black, .zlt_micon.black, .zlt_miconO.black /* black */
{ filter: invert(0.25); font-size:1.4rem; }
.zlt_miconTT.link, .zlt_micon.link, .zlt_miconO.link /* blue */
{ filter: invert(0.5) sepia(1) saturate(100) hue-rotate(200deg); font-size:1.4rem; }
.zlt_miconTT.err, .zlt_micon.err, .zlt_miconO.err /* orangered */
{ filter: invert(0.5) sepia(1) saturate(100) hue-rotate(10deg); font-size:1.4rem; }
.zlt_miconTT.ok, .zlt_micon.ok, .zlt_miconO.ok /* green */
{ filter: invert(0.5) sepia(1) saturate(100) hue-rotate(110deg); font-size:1.4rem; }
.zlt_miconTT.warn, .zlt_micon.warn, .zlt_miconO.warn /* yellow/orange */
{ filter: invert(0.5) sepia(1) saturate(100) hue-rotate(54deg) brightness(2.75); font-size:1.4rem; }
/* HTMX Visuals */
.htmx-request /* point at target div to replace to get a fadey effect when the network is busy grabbing */
{
filter:saturate(0.4);
opacity:0.4;
transition: all 1.25s ease-in;
}
.htmx-fade-out
{
opacity: 0.5;
filter:saturate(0.33);
transition: all 0.75s;
}
.htmx-spinner-container
{
position:absolute;
top:0;
left:0;
width:100%;
margin: auto;
}
@keyframes fadeIn { 0% { opacity: 0; } 25% { opacity: 0; } 100% { opacity: 1; } }
.htmx-spinner
{
position:absolute;
left:0;
bottom:0;
min-height:20px;
max-height:50px;
height:100%;
animation: fadeIn 1s;
ba1ckground-color:rgba(128,128,255, 0.5);
}
.htmx-spinner img
{
opacity:1 !important;
z-index:9999;
}