zebra-day 0.0.32__py3-none-any.whl → 1.0.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- zebra_day/__init__.py +35 -0
- zebra_day/bin/fetch_zebra_config.py +15 -0
- zebra_day/bin/generate_coord_grid_zpl.py +50 -0
- zebra_day/bin/print_zpl_from_file.py +21 -0
- zebra_day/bin/probe_new_label_dimensions.py +75 -0
- zebra_day/bin/scan_for_networed_zebra_printers_curl.sh +2 -1
- zebra_day/bin/zserve.py +701 -259
- zebra_day/cli/__init__.py +240 -0
- zebra_day/cli/cognito.py +121 -0
- zebra_day/cli/gui.py +255 -0
- zebra_day/cli/printer.py +168 -0
- zebra_day/cli/template.py +176 -0
- zebra_day/cmd_mgr.py +35 -0
- zebra_day/etc/label_styles/blank.zpl +0 -0
- zebra_day/etc/label_styles/cornersStripOf4Squares_1inX1in.zpl +55 -0
- zebra_day/etc/label_styles/corners_1inX2in.zpl +28 -0
- zebra_day/etc/label_styles/corners_20cmX30cm.zpl +6 -0
- zebra_day/etc/label_styles/corners_smallTube.zpl +7 -0
- zebra_day/etc/label_styles/corners_unspecifiedDimensions.zpl +15 -0
- zebra_day/etc/label_styles/plate_1inX0.25inHD.zpl +9 -0
- zebra_day/etc/label_styles/smallTubeWdotHD_prod.zpl +8 -0
- zebra_day/etc/label_styles/smallTubeWdot_corners.zpl +7 -0
- zebra_day/etc/label_styles/smallTubeWdot_prod.zpl +8 -0
- zebra_day/etc/label_styles/smallTubeWdot_prodAlt1.zpl +6 -0
- zebra_day/etc/label_styles/smallTubeWdot_prodAlt1b.zpl +3 -0
- zebra_day/etc/label_styles/smallTubeWdot_prodV2.zpl +8 -0
- zebra_day/etc/label_styles/smallTubeWdot_reagent.zpl +29 -0
- zebra_day/etc/label_styles/stripOf4Squares_1inX1in.zpl +32 -0
- zebra_day/etc/label_styles/test_800dX800dCoordinateArray.zpl +1 -0
- zebra_day/etc/label_styles/tmps/tmp_zpl_templates.here +0 -0
- zebra_day/etc/label_styles/tube_20mmX30mmA.zpl +7 -0
- zebra_day/etc/label_styles/tube_2inX0.5in.zpl +15 -0
- zebra_day/etc/label_styles/tube_2inX0.5inHD.zpl +15 -0
- zebra_day/etc/label_styles/tube_2inX1inHD.zpl +22 -0
- zebra_day/etc/label_styles/tube_2inX1inHDv3.zpl +21 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:50:25.022846_printer_config.json +1 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:50:25.033657_printer_config.json +1 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:50:25.039597_printer_config.json +3 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:50:25.047295_printer_config.json +1 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:50:25.055804_printer_config.json +1 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:50:25.061337_printer_config.json +3 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:51:24.073326_printer_config.json +1 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:51:24.081950_printer_config.json +1 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:51:24.088251_printer_config.json +3 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:51:24.096501_printer_config.json +1 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:51:24.104767_printer_config.json +1 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:51:24.110364_printer_config.json +3 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:51:24.118239_printer_config.json +1 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:51:24.125950_printer_config.json +1 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:51:24.349866_printer_config.json +1 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:51:24.361085_printer_config.json +3 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:51:24.558323_printer_config.json +1 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:51:24.565756_printer_config.json +3 -0
- zebra_day/etc/old_printer_config/{2023-10-25_02:19:04.139607_printer_config.json → 2026-02-01_01:51:29.739070_printer_config.json} +4 -3
- zebra_day/etc/old_printer_config/2026-02-01_01:51:29.753796_printer_config.json +1 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:51:29.760201_printer_config.json +3 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:51:29.768747_printer_config.json +1 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:51:29.775312_printer_config.json +3 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:51:29.782533_printer_config.json +1 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:51:29.789287_printer_config.json +1 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:51:29.794230_printer_config.json +3 -0
- zebra_day/etc/old_printer_config/2026-02-01_01:51:29.800021_printer_config.json +5 -0
- zebra_day/etc/printer_config.json +3 -54
- zebra_day/etc/printer_config.template.json +3 -2
- zebra_day/etc/tmp_printers0.json +5 -0
- zebra_day/etc/tmp_printers374.json +5 -0
- zebra_day/etc/tmp_printers383.json +5 -0
- zebra_day/etc/tmp_printers450.json +5 -0
- zebra_day/etc/tmp_printers504.json +5 -0
- zebra_day/etc/tmp_printers608.json +5 -0
- zebra_day/etc/tmp_printers657.json +5 -0
- zebra_day/etc/tmp_printers838.json +5 -0
- zebra_day/etc/tmp_printers839.json +5 -0
- zebra_day/etc/tmp_printers933.json +5 -0
- zebra_day/etc/tmp_printers957.json +5 -0
- zebra_day/exceptions.py +88 -0
- zebra_day/files/hold +0 -0
- zebra_day/files/test_png_17696.png +0 -0
- zebra_day/files/test_png_23477.png +0 -0
- zebra_day/files/test_png_28157.png +0 -0
- zebra_day/files/test_png_35832.png +0 -0
- zebra_day/files/test_png_36400.png +0 -0
- zebra_day/files/test_png_40816.png +0 -0
- zebra_day/files/test_png_49564.png +0 -0
- zebra_day/files/test_png_53848.png +0 -0
- zebra_day/files/test_png_62542.png +0 -0
- zebra_day/files/test_png_91597.png +0 -0
- zebra_day/files/test_png_93633.png +0 -0
- zebra_day/files/tmpbjo3k7q1.png +0 -0
- zebra_day/files/tmpigtr4pwy.png +0 -0
- zebra_day/files/zpl_label_tube_2inX1in_2026-02-01_01:51:24.370964.png +0 -0
- zebra_day/logging_config.py +74 -0
- zebra_day/logs/.hold +0 -0
- zebra_day/logs/print_requests.log +2 -0
- zebra_day/paths.py +143 -0
- zebra_day/print_mgr.py +489 -103
- zebra_day/static/datschund.css +63 -43
- zebra_day/static/datschund.png +0 -0
- zebra_day/static/daylily.png +0 -0
- zebra_day/static/favicon.svg +20 -0
- zebra_day/static/general.css +99 -0
- zebra_day/static/js/zebra_modern.js +172 -0
- zebra_day/static/lsmc.css +354 -0
- zebra_day/static/moon.jpeg +0 -0
- zebra_day/static/oakland.css +0 -32
- zebra_day/static/popday_daylily.css +1 -1
- zebra_day/static/style.css +39 -0
- zebra_day/static/zebra_modern.css +771 -0
- zebra_day/templates/base.html +36 -0
- zebra_day/templates/bpr.html +72 -0
- zebra_day/templates/build_new_config.html +36 -0
- zebra_day/templates/build_print_request.html +32 -0
- zebra_day/templates/chg_ui_style.html +19 -0
- zebra_day/templates/edit_template.html +128 -0
- zebra_day/templates/edit_zpl.html +37 -0
- zebra_day/templates/index.html +82 -0
- zebra_day/templates/legacy/base.html +37 -0
- zebra_day/templates/legacy/bpr.html +72 -0
- zebra_day/templates/legacy/build_new_config.html +36 -0
- zebra_day/templates/legacy/build_print_request.html +32 -0
- zebra_day/templates/legacy/chg_ui_style.html +19 -0
- zebra_day/templates/legacy/edit_template.html +128 -0
- zebra_day/templates/legacy/edit_zpl.html +37 -0
- zebra_day/templates/legacy/index.html +82 -0
- zebra_day/templates/legacy/list_prior_configs.html +24 -0
- zebra_day/templates/legacy/print_result.html +30 -0
- zebra_day/templates/legacy/printer_details.html +25 -0
- zebra_day/templates/legacy/printer_status.html +70 -0
- zebra_day/templates/legacy/save_result.html +17 -0
- zebra_day/templates/legacy/send_print_request.html +34 -0
- zebra_day/templates/legacy/simple_print.html +94 -0
- zebra_day/templates/legacy/view_pstation_json.html +29 -0
- zebra_day/templates/list_prior_configs.html +24 -0
- zebra_day/templates/modern/base.html +98 -0
- zebra_day/templates/modern/config.html +141 -0
- zebra_day/templates/modern/dashboard.html +160 -0
- zebra_day/templates/modern/print_request.html +141 -0
- zebra_day/templates/modern/print_result.html +88 -0
- zebra_day/templates/modern/printer_detail.html +117 -0
- zebra_day/templates/modern/printers.html +133 -0
- zebra_day/templates/modern/save_result.html +46 -0
- zebra_day/templates/modern/template_editor.html +172 -0
- zebra_day/templates/modern/templates.html +122 -0
- zebra_day/templates/print_result.html +30 -0
- zebra_day/templates/printer_details.html +25 -0
- zebra_day/templates/printer_status.html +70 -0
- zebra_day/templates/save_result.html +17 -0
- zebra_day/templates/send_print_request.html +34 -0
- zebra_day/templates/simple_print.html +94 -0
- zebra_day/templates/view_pstation_json.html +29 -0
- zebra_day/web/__init__.py +9 -0
- zebra_day/web/app.py +171 -0
- zebra_day/web/auth.py +172 -0
- zebra_day/web/middleware.py +159 -0
- zebra_day/web/routers/__init__.py +2 -0
- zebra_day/web/routers/api.py +163 -0
- zebra_day/web/routers/ui.py +1051 -0
- zebra_day/zpl_renderer.py +273 -0
- zebra_day-1.0.2.dist-info/METADATA +786 -0
- zebra_day-1.0.2.dist-info/RECORD +179 -0
- {zebra_day-0.0.32.dist-info → zebra_day-1.0.2.dist-info}/WHEEL +1 -1
- zebra_day-1.0.2.dist-info/entry_points.txt +4 -0
- zebra_day/etc/.blind +0 -1
- zebra_day/etc/current_style.txt +0 -1
- zebra_day/etc/label_styles/test_2inX1in.zpl +0 -22
- zebra_day/etc/label_styles/tmps/labware_2inX1in.na.2023-10-24_12:49:21.045127.zpl +0 -21
- zebra_day/etc/label_styles/tmps/labware_2inX1in.naggg.2023-10-24_16:02:04.704814.8888.2023-10-24_16:02:16.443911.zpl +0 -21
- zebra_day/etc/label_styles/tmps/labware_2inX1in.naggg.2023-10-24_16:02:04.704814.zpl +0 -21
- zebra_day/etc/label_styles/tmps/test_2inX1in.na.2023-10-24_12:45:37.002774.zpl +0 -22
- zebra_day/etc/old_printer_config/2023-10-24_16:06:06.931764_printer_config.json +0 -67
- zebra_day/etc/printer_config.json~ +0 -67
- zebra_day/files/tmp_2olihg4.png +0 -0
- zebra_day/files/tmpveojoyvn.png +0 -0
- zebra_day/files/zpl_label_labware_2inX1in_2023-10-25_02:30:08.093631.png +0 -0
- zebra_day/files/zpl_label_test_2inX1in_2023-10-24_15:54:29.343124.png +0 -0
- zebra_day/files/zpl_label_test_2inX1in_2023-10-24_16:01:45.670132.png +0 -0
- zebra_day/static/beyonce.css +0 -227
- zebra_day/static/datschund_on_moon.css +0 -164
- zebra_day/static/medicalsci.css +0 -144
- zebra_day/static/moar_zebra.css +0 -133
- zebra_day/static/popday.css +0 -140
- zebra_day/static/popday_dark.css +0 -140
- zebra_day/static/popday_dog.css +0 -140
- zebra_day-0.0.32.dist-info/METADATA +0 -14
- zebra_day-0.0.32.dist-info/RECORD +0 -53
- zebra_day-0.0.32.dist-info/entry_points.txt +0 -2
- /zebra_day/{etc/label_styles/blank_0inX0in.zpl → bin/__init__.py} +0 -0
- /zebra_day/etc/label_styles/{labware_2inX1in.zpl → generic_2inX1in.zpl} +0 -0
- {zebra_day-0.0.32.dist-info → zebra_day-1.0.2.dist-info/licenses}/LICENSE +0 -0
- {zebra_day-0.0.32.dist-info → zebra_day-1.0.2.dist-info}/top_level.txt +0 -0
zebra_day/static/beyonce.css
DELETED
|
@@ -1,227 +0,0 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: 'Monoid';
|
|
3
|
-
src: url('/etc/Monoid-Regular-HalfTight-Dollar-0-1-l.ttf') format('truetype');
|
|
4
|
-
font-weight: normal;
|
|
5
|
-
font-style: normal;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
body {
|
|
9
|
-
font-family: 'Monoid', monospace;
|
|
10
|
-
background-color: #121212;
|
|
11
|
-
color: #EFEFEF;
|
|
12
|
-
margin: 0;
|
|
13
|
-
padding: 20px;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
h1, h2 {
|
|
17
|
-
color: #FFD700; /* Golden color for headers */
|
|
18
|
-
border-bottom: 3px solid #FFD700;
|
|
19
|
-
padding-bottom: 5px;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
ul {
|
|
23
|
-
list-style-type: none;
|
|
24
|
-
padding: 0;
|
|
25
|
-
margin-left: 21px;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
li::before {
|
|
29
|
-
content: '';
|
|
30
|
-
display: inline-block;
|
|
31
|
-
width: 3px;
|
|
32
|
-
height: 3px;
|
|
33
|
-
border-radius: 50%;
|
|
34
|
-
border: 0.6px solid #FFD700; /* Golden border */
|
|
35
|
-
background-color: #121212;
|
|
36
|
-
margin-right: 7px;
|
|
37
|
-
box-shadow: 0 0 3px #FFD700, 0 0 5px #FFD700, inset 0 0 3px #FFD700;
|
|
38
|
-
vertical-align: middle;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
@keyframes pulsate {
|
|
42
|
-
0% {
|
|
43
|
-
box-shadow: 0 0 3px #FFD700, 0 0 4px #FFD700, inset 0 0 3px #FFD700;
|
|
44
|
-
}
|
|
45
|
-
50% {
|
|
46
|
-
box-shadow: 0 0 4px #FFAA00, 0 0 7px #FFAA00, inset 0 0 4px #FFAA00;
|
|
47
|
-
}
|
|
48
|
-
100% {
|
|
49
|
-
box-shadow: 0 0 3px #FFD700, 0 0 5px #FFD700, inset 0 0 3px #FFD700;
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
li::before {
|
|
54
|
-
animation: pulsate 15s infinite alternate;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
a {
|
|
58
|
-
color: #FFD700; /* Golden links */
|
|
59
|
-
text-decoration: none;
|
|
60
|
-
transition: color 0.3s ease;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
a:hover {
|
|
64
|
-
color: #FFAA00; /* Slightly different shade of gold for hover */
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
small {
|
|
68
|
-
color: #B0B0B0;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.spinner-hidden {
|
|
72
|
-
display: none;
|
|
73
|
-
position: fixed;
|
|
74
|
-
top: 0; left: 0; right: 0; bottom: 0;
|
|
75
|
-
background: rgba(0,0,0,0.6);
|
|
76
|
-
z-index: 1000;
|
|
77
|
-
align-items: center;
|
|
78
|
-
justify-content: center;
|
|
79
|
-
display: flex;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
hr {
|
|
84
|
-
border: 0;
|
|
85
|
-
height: 1px;
|
|
86
|
-
background-image: linear-gradient(to right, #FFD700, #121212, #FFD700); /* Gradient line effect with gold */
|
|
87
|
-
margin: 20px 0;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
input[type=text], textarea {
|
|
91
|
-
background-color: #202020;
|
|
92
|
-
color: #EFEFEF;
|
|
93
|
-
border: 2px solid #FFD700;
|
|
94
|
-
border-radius: 5px;
|
|
95
|
-
padding: 5px 10px;
|
|
96
|
-
outline: none;
|
|
97
|
-
transition: background-color 0.3s ease, border-color 0.3s ease;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
input[type=text]:hover, textarea:hover {
|
|
101
|
-
background-color: #2A2A2A;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
input[type=text]:focus, textarea:focus {
|
|
105
|
-
background-color: #333333;
|
|
106
|
-
border-color: #FFAA00;
|
|
107
|
-
box-shadow: 0 0 5px #FFAA00, 0 0 10px #FFAA00;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
input[type=submit], button {
|
|
111
|
-
background-color: #FFD700;
|
|
112
|
-
color: #121212;
|
|
113
|
-
border: none;
|
|
114
|
-
border-radius: 5px;
|
|
115
|
-
padding: 8px 15px;
|
|
116
|
-
font-family: 'Monoid', monospace;
|
|
117
|
-
cursor: pointer;
|
|
118
|
-
outline: none;
|
|
119
|
-
transition: background-color 0.3s ease, transform 0.2s ease;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
input[type=submit]:hover, button:hover {
|
|
123
|
-
background-color: #FFAA00;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
input[type=submit]:active, button:active {
|
|
127
|
-
transform: translateY(2px);
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
/* Beyoncé-themed button styling */
|
|
131
|
-
input[type="button"] {
|
|
132
|
-
background-color: #FFD700; /* Glamorous gold background */
|
|
133
|
-
border: 2px solid #8B4513; /* Dark bronze border */
|
|
134
|
-
color: #1A1A1A; /* Deep black text for contrast */
|
|
135
|
-
padding: 10px 20px;
|
|
136
|
-
font-size: 16px;
|
|
137
|
-
border-radius: 5px;
|
|
138
|
-
transition: all 0.3s ease;
|
|
139
|
-
cursor: pointer;
|
|
140
|
-
outline: none;
|
|
141
|
-
font-family: 'Great Vibes', cursive; /* A script-like font that feels glamorous; ensure you've imported it */
|
|
142
|
-
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
input[type="button"]:hover {
|
|
146
|
-
background-color: #E6BE8A; /* Lighter gold on hover */
|
|
147
|
-
color: #0E0E0E; /* Darker text on hover */
|
|
148
|
-
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Increase shadow depth on hover */
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
input[type="button"]:active {
|
|
152
|
-
background-color: #FFC125; /* Intermediate gold when pressed */
|
|
153
|
-
border-color: #8B6914;
|
|
154
|
-
color: #050505;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
/* Beyoncé-themed form select styling */
|
|
158
|
-
select {
|
|
159
|
-
background-color: #1A1A1A; /* Deep black background */
|
|
160
|
-
border: 2px solid #8B4513; /* Dark bronze border */
|
|
161
|
-
color: #FFD700; /* Gold text */
|
|
162
|
-
padding: 8px 12px;
|
|
163
|
-
font-size: 16px;
|
|
164
|
-
border-radius: 5px;
|
|
165
|
-
appearance: none;
|
|
166
|
-
font-family: 'Great Vibes', cursive; /* Glamorous font; ensure you've imported it */
|
|
167
|
-
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
select:focus {
|
|
171
|
-
border-color: #FFD700; /* Gold border when focused */
|
|
172
|
-
outline: none;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
/* Custom dropdown arrow for select element */
|
|
176
|
-
select::-ms-expand {
|
|
177
|
-
display: none;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
select::-webkit-scrollbar {
|
|
181
|
-
width: 10px;
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
select::-webkit-scrollbar-thumb {
|
|
185
|
-
background-color: #8B4513; /* Dark bronze scrollbar thumb */
|
|
186
|
-
border-radius: 5px;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
select::-webkit-scrollbar-track {
|
|
190
|
-
background-color: #1A1A1A; /* Deep black scrollbar track */
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
#spinner.spinner-hidden {
|
|
194
|
-
display: none;
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
#spinner {
|
|
199
|
-
position: fixed;
|
|
200
|
-
top: 50%;
|
|
201
|
-
left: 50%;
|
|
202
|
-
transform: translate(-50%, -50%);
|
|
203
|
-
z-index: 9999;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
.loader {
|
|
207
|
-
border: 8px solid #f3f3f3;
|
|
208
|
-
border-top: 8px solid #00FFFF; /* Spinner color */
|
|
209
|
-
border-radius: 50%;
|
|
210
|
-
width: 50px;
|
|
211
|
-
height: 50px;
|
|
212
|
-
animation: spin 1s linear infinite;
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
.cloader {
|
|
216
|
-
border: 16px solid #f3f3f3;
|
|
217
|
-
border-top: 16px solid #3498db;
|
|
218
|
-
border-radius: 50%;
|
|
219
|
-
width: 50px;
|
|
220
|
-
height: 50px;
|
|
221
|
-
animation: spin 2s linear infinite;
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
@keyframes spin {
|
|
225
|
-
0% { transform: rotate(0deg); }
|
|
226
|
-
100% { transform: rotate(360deg); }
|
|
227
|
-
}
|
|
@@ -1,164 +0,0 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: 'Monoid';
|
|
3
|
-
src: url('/etc/Monoid-Regular-HalfTight-Dollar-0-1-l.ttf') format('truetype');
|
|
4
|
-
font-weight: normal;
|
|
5
|
-
font-style: normal;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
body {
|
|
9
|
-
font-family: 'Monoid', monospace;
|
|
10
|
-
background-color: #181818; /* Dark space background */
|
|
11
|
-
color: #EFD9B0; /* Color reminiscent of a Dachshund's coat */
|
|
12
|
-
margin: 0;
|
|
13
|
-
padding: 20px;
|
|
14
|
-
background-image: url('../imgs/datschund.png');
|
|
15
|
-
background-size: cover;
|
|
16
|
-
background-position: center;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
h1, h2 {
|
|
20
|
-
color: #F2AA4C; /* Golden hue for headers */
|
|
21
|
-
border-bottom: 3px solid #F2AA4C;
|
|
22
|
-
padding-bottom: 5px;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
ul {
|
|
26
|
-
list-style-type: none;
|
|
27
|
-
padding: 0;
|
|
28
|
-
margin-left: 21px;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
li::before {
|
|
32
|
-
content: '';
|
|
33
|
-
display: inline-block;
|
|
34
|
-
width: 3px;
|
|
35
|
-
height: 3px;
|
|
36
|
-
border-radius: 50%;
|
|
37
|
-
border: 0.6px solid #F2AA4C;
|
|
38
|
-
background-color: #181818;
|
|
39
|
-
margin-right: 7px;
|
|
40
|
-
vertical-align: middle;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
@keyframes pulsate {
|
|
44
|
-
0%, 100% {
|
|
45
|
-
box-shadow: 0 0 3px #F2AA4C;
|
|
46
|
-
}
|
|
47
|
-
50% {
|
|
48
|
-
box-shadow: 0 0 7px #F2AA4C;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
li::before {
|
|
53
|
-
animation: pulsate 15s infinite alternate;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
a {
|
|
57
|
-
color: #F2AA4C;
|
|
58
|
-
text-decoration: none;
|
|
59
|
-
transition: color 0.3s ease;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
a:hover {
|
|
63
|
-
color: #EFD9B0; /* Lighter Dachshund shade for hover */
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
small {
|
|
67
|
-
color: #B0A292; /* Dimmed color for smaller text */
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.spinner-hidden {
|
|
71
|
-
display: none;
|
|
72
|
-
position: fixed;
|
|
73
|
-
top: 0; left: 0; right: 0; bottom: 0;
|
|
74
|
-
background: rgba(0,0,0,0.6);
|
|
75
|
-
z-index: 1000;
|
|
76
|
-
align-items: center;
|
|
77
|
-
justify-content: center;
|
|
78
|
-
display: flex;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
#spinner.spinner-hidden {
|
|
82
|
-
display: none;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
#spinner {
|
|
86
|
-
position: fixed;
|
|
87
|
-
top: 50%;
|
|
88
|
-
left: 50%;
|
|
89
|
-
transform: translate(-50%, -50%);
|
|
90
|
-
z-index: 9999;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.loader, .cloader {
|
|
94
|
-
border: 8px solid #2B2B2B;
|
|
95
|
-
border-top: 8px solid #F2AA4C;
|
|
96
|
-
border-radius: 50%;
|
|
97
|
-
width: 50px;
|
|
98
|
-
height: 50px;
|
|
99
|
-
animation: spin 1s linear infinite;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
@keyframes spin {
|
|
103
|
-
0% { transform: rotate(0deg); }
|
|
104
|
-
100% { transform: rotate(360deg); }
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
hr {
|
|
108
|
-
border: 0;
|
|
109
|
-
height: 1px;
|
|
110
|
-
background-image: linear-gradient(to right, #F2AA4C, #181818, #F2AA4C);
|
|
111
|
-
margin: 20px 0;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
/* I'll continue to modify the elements to match the Dachshund on the moon theme. */
|
|
115
|
-
|
|
116
|
-
input[type=text], textarea, select {
|
|
117
|
-
background-color: #2B2B2B; /* Darker background for contrast */
|
|
118
|
-
color: #EFD9B0; /* Text color reminiscent of a Dachshund's coat */
|
|
119
|
-
border: 2px solid #F2AA4C; /* Golden border */
|
|
120
|
-
border-radius: 5px;
|
|
121
|
-
padding: 5px 10px;
|
|
122
|
-
outline: none;
|
|
123
|
-
transition: background-color 0.3s ease;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
input[type=text]:hover, textarea:hover, select:hover {
|
|
127
|
-
background-color: #3B3B3B; /* Slightly brighter on hover */
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
input[type=submit], button, input[type="button"] {
|
|
131
|
-
background-color: #2B2B2B;
|
|
132
|
-
color: #EFD9B0;
|
|
133
|
-
border: 2px solid #F2AA4C;
|
|
134
|
-
border-radius: 5px;
|
|
135
|
-
padding: 8px 15px;
|
|
136
|
-
cursor: pointer;
|
|
137
|
-
outline: none;
|
|
138
|
-
transition: background-color 0.3s ease, border-color 0.3s ease;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
input[type=submit]:hover, button:hover, input[type="button"]:hover {
|
|
142
|
-
background-color: #3B3B3B;
|
|
143
|
-
border-color: #EFD9B0;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
input[type=submit]:active, button:active, input[type="button"]:active {
|
|
147
|
-
background-color: #4B4B4B;
|
|
148
|
-
border-color: #EFD9B0;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
textarea::-webkit-scrollbar {
|
|
152
|
-
width: 10px;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
textarea::-webkit-scrollbar-thumb {
|
|
156
|
-
background-color: #F2AA4C;
|
|
157
|
-
border-radius: 5px;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
textarea::-webkit-scrollbar-track {
|
|
161
|
-
background-color: #2B2B2B;
|
|
162
|
-
border-radius: 5px;
|
|
163
|
-
}
|
|
164
|
-
|
zebra_day/static/medicalsci.css
DELETED
|
@@ -1,144 +0,0 @@
|
|
|
1
|
-
/* Fonts and Base */
|
|
2
|
-
@import url('https://fonts.googleapis.com/css2?family=DejaVu+Sans+Mono&display=swap');
|
|
3
|
-
|
|
4
|
-
.spinner-hidden {
|
|
5
|
-
display: none;
|
|
6
|
-
position: fixed;
|
|
7
|
-
top: 0; left: 0; right: 0; bottom: 0;
|
|
8
|
-
background: rgba(0,0,0,0.6);
|
|
9
|
-
z-index: 1000;
|
|
10
|
-
align-items: center;
|
|
11
|
-
justify-content: center;
|
|
12
|
-
display: flex;
|
|
13
|
-
}
|
|
14
|
-
#spinner.spinner-hidden {
|
|
15
|
-
display: none;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
#spinner {
|
|
20
|
-
position: fixed;
|
|
21
|
-
top: 50%;
|
|
22
|
-
left: 50%;
|
|
23
|
-
transform: translate(-50%, -50%);
|
|
24
|
-
z-index: 9999;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.loader {
|
|
28
|
-
border: 8px solid #f3f3f3;
|
|
29
|
-
border-top: 8px solid #00FFFF; /* Spinner color */
|
|
30
|
-
border-radius: 50%;
|
|
31
|
-
width: 50px;
|
|
32
|
-
height: 50px;
|
|
33
|
-
animation: spin 1s linear infinite;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.cloader {
|
|
37
|
-
border: 16px solid #f3f3f3;
|
|
38
|
-
border-top: 16px solid #3498db;
|
|
39
|
-
border-radius: 50%;
|
|
40
|
-
width: 50px;
|
|
41
|
-
height: 50px;
|
|
42
|
-
animation: spin 2s linear infinite;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
@keyframes spin {
|
|
46
|
-
0% { transform: rotate(0deg); }
|
|
47
|
-
100% { transform: rotate(360deg); }
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
body {
|
|
52
|
-
font-family: 'DejaVu Sans Mono', monospace;
|
|
53
|
-
background-color: #f5f7fa; /* Very light blue background, reminiscent of clinical settings */
|
|
54
|
-
color: #333;
|
|
55
|
-
margin: 0;
|
|
56
|
-
padding: 20px;
|
|
57
|
-
line-height: 1.6;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
/* Headers: Using deep blue for a professional and medical feel */
|
|
61
|
-
h1, h2, h3, h4, h5, h6 {
|
|
62
|
-
color: #0052cc;
|
|
63
|
-
margin-top: 0;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
/* Links */
|
|
67
|
-
a {
|
|
68
|
-
color: #007bff; /* Modern blue */
|
|
69
|
-
text-decoration: none;
|
|
70
|
-
transition: color 0.3s ease;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
a:hover {
|
|
74
|
-
color: #0052cc; /* Darker blue for hover effect */
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
/* Lists */
|
|
78
|
-
ul, ol {
|
|
79
|
-
padding-left: 20px;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
li {
|
|
83
|
-
margin-bottom: 10px;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
/* Buttons and Interactive Elements */
|
|
87
|
-
button, input[type="submit"], input[type="button"] {
|
|
88
|
-
background-color: #007bff; /* Consistent modern blue */
|
|
89
|
-
color: #fff;
|
|
90
|
-
border: none;
|
|
91
|
-
border-radius: 4px;
|
|
92
|
-
padding: 10px 15px;
|
|
93
|
-
cursor: pointer;
|
|
94
|
-
transition: background-color 0.3s ease;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
button:hover, input[type="submit"]:hover, input[type="button"]:hover {
|
|
98
|
-
background-color: #0052cc; /* Darker blue for hover */
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
/* Forms */
|
|
102
|
-
input[type="text"], input[type="email"], input[type="password"], textarea, select {
|
|
103
|
-
background-color: rgba(11,92,133,.4);
|
|
104
|
-
padding: 10px;
|
|
105
|
-
margin-bottom: 10px;
|
|
106
|
-
border: 1px solid #ccc;
|
|
107
|
-
border-radius: 4px;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
/* Divider */
|
|
111
|
-
hr {
|
|
112
|
-
border: 0;
|
|
113
|
-
height: 1px;
|
|
114
|
-
background-color: #e1e1e1; /* Light gray divider */
|
|
115
|
-
margin: 20px 0;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
/* Callouts for Important Info (think of alerts or side notes) */
|
|
119
|
-
.callout {
|
|
120
|
-
padding: 15px;
|
|
121
|
-
border-left: 4px solid #00cc99; /* Green to signify life/growth */
|
|
122
|
-
background-color: #e6f9f5; /* Light green background */
|
|
123
|
-
margin-bottom: 20px;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
/* Dark Mode Toggle (for modernity) */
|
|
127
|
-
.dark-mode-toggle {
|
|
128
|
-
position: fixed;
|
|
129
|
-
top: 20px;
|
|
130
|
-
right: 20px;
|
|
131
|
-
background: none;
|
|
132
|
-
border: none;
|
|
133
|
-
color: #0052cc;
|
|
134
|
-
font-size: 24px;
|
|
135
|
-
cursor: pointer;
|
|
136
|
-
transition: color 0.3s ease;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
.dark-mode-toggle:hover {
|
|
140
|
-
color: #007bff;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
/* If you implement dark mode, you'll need styles for it here */
|
|
144
|
-
|
zebra_day/static/moar_zebra.css
DELETED
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
body {
|
|
2
|
-
font-family: 'Arial', sans-serif;
|
|
3
|
-
background-color: #f4f4f4;
|
|
4
|
-
margin: 0;
|
|
5
|
-
padding: 0;
|
|
6
|
-
color:white;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.zebra-container {
|
|
10
|
-
background-image: repeating-linear-gradient(
|
|
11
|
-
0deg,
|
|
12
|
-
#FFFFFF,
|
|
13
|
-
#FFFFFF 40px,
|
|
14
|
-
#000000 40px,
|
|
15
|
-
#000000 80px
|
|
16
|
-
); /* Vertical zebra stripes */
|
|
17
|
-
padding: 20px;
|
|
18
|
-
color: #f4f4f4; /* Light colored text for visibility against dark stripes */
|
|
19
|
-
margin: 20px;
|
|
20
|
-
border-radius: 10px;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
h1, h2, h3 {
|
|
24
|
-
background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent white background */
|
|
25
|
-
padding: 10px;
|
|
26
|
-
border-radius: 5px;
|
|
27
|
-
color: coral;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
p, ul, ol {
|
|
31
|
-
background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background for visibility */
|
|
32
|
-
padding: 10px;
|
|
33
|
-
border-radius: 5px;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
ul {
|
|
37
|
-
list-style-type: none; /* Remove default bullets */
|
|
38
|
-
padding: 0;
|
|
39
|
-
margin-left: 21px; /* Provide spacing for our custom bullet */
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
#spinner.spinner-hidden {
|
|
43
|
-
display: none;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
a {
|
|
48
|
-
color: #FF4500;
|
|
49
|
-
background-color: #f4f4f4;
|
|
50
|
-
text-decoration: none;
|
|
51
|
-
padding: 2px 5px;
|
|
52
|
-
border-radius: 3px;
|
|
53
|
-
transition: color 0.3s ease, background-color 0.3s ease;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
a:hover {
|
|
57
|
-
color: #FFFFFF;
|
|
58
|
-
background-color: #FF6347;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
li::before {
|
|
62
|
-
content: '•';
|
|
63
|
-
color: #f4f4f4;
|
|
64
|
-
margin-right: 10px;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
input[type=text], textarea {
|
|
68
|
-
background-color: #FFFFFF;
|
|
69
|
-
color: #333333;
|
|
70
|
-
border: 1px solid #000000;
|
|
71
|
-
padding: 5px 10px;
|
|
72
|
-
outline: none;
|
|
73
|
-
border-radius: 5px;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
button, input[type=submit] {
|
|
77
|
-
background-color: #FF4500;
|
|
78
|
-
color: #FFFFFF;
|
|
79
|
-
border: none;
|
|
80
|
-
padding: 10px 15px;
|
|
81
|
-
border-radius: 5px;
|
|
82
|
-
cursor: pointer;
|
|
83
|
-
transition: background-color 0.3s ease;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
button:hover, input[type=submit]:hover {
|
|
87
|
-
background-color: #FF6347;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
.spinner-hidden {
|
|
91
|
-
display: none;
|
|
92
|
-
position: fixed;
|
|
93
|
-
top: 0; left: 0; right: 0; bottom: 0;
|
|
94
|
-
background: rgba(0,0,0,0.6);
|
|
95
|
-
z-index: 1000;
|
|
96
|
-
align-items: center;
|
|
97
|
-
justify-content: center;
|
|
98
|
-
display: flex;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
#spinner {
|
|
103
|
-
position: fixed;
|
|
104
|
-
top: 50%;
|
|
105
|
-
left: 50%;
|
|
106
|
-
transform: translate(-50%, -50%);
|
|
107
|
-
z-index: 9999;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
.loader {
|
|
112
|
-
border: 8px solid #f3f3f3;
|
|
113
|
-
border-top: 8px solid #00FFFF; /* Spinner color */
|
|
114
|
-
border-radius: 50%;
|
|
115
|
-
width: 50px;
|
|
116
|
-
height: 50px;
|
|
117
|
-
animation: spin 1s linear infinite;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.cloader {
|
|
121
|
-
border: 16px solid #f3f3f3;
|
|
122
|
-
border-top: 16px solid #3498db;
|
|
123
|
-
border-radius: 50%;
|
|
124
|
-
width: 50px;
|
|
125
|
-
height: 50px;
|
|
126
|
-
animation: spin 2s linear infinite;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
@keyframes spin {
|
|
130
|
-
0% { transform: rotate(0deg); }
|
|
131
|
-
100% { transform: rotate(360deg); }
|
|
132
|
-
}
|
|
133
|
-
|