-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobals.css
389 lines (331 loc) · 7.77 KB
/
globals.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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
@tailwind base;
@tailwind components;
@tailwind utilities;
/**
*GlobalStyles
* @description Globale CSS-Stile für die Anwendung.
* @remarks
* Definiert grundlegende Stile, die in der gesamten Anwendung verwendet werden.
*/
@font-face {
font-family: "helvetica200";
src: url("../../public/fonts/helveticaneuelt-std-thin_normal_250.ttf") format("truetype");
}
@font-face {
font-family: "roboto300";
src: url("../../public/fonts/roboto-slab-light_normal_300.ttf") format("truetype");
}
@font-face {
font-family: "helvetica500";
src: url("../../public/fonts/helvetica-neue-lt-std_normal_500.otf") format("truetype");
}
.boldweight {
font-family: helvetica500;
}
@layer base {
@font-face {
font-family: "helvetica200";
src: url("../../public/fonts/helveticaneuelt-std-thin_normal_250.ttf") format("truetype");
}
@font-face {
font-family: "roboto300";
src: url("../../public/fonts/roboto-slab-light_normal_300.ttf") format("truetype");
}
@font-face {
font-family: "helvetica500";
src: url("../../public/fonts/helvetica-neue-lt-std_normal_500.otf") format("truetype");
}
h1 {
@apply font-helvetica200 text-5xl font-extralight leading-9 mb-8;
}
boldweight {
@apply font-helvetica500;
}
p {
@apply font-roboto300 text-base leading-6;
}
card {
@apply bg-white box-border;
}
:root {
--text-primary: rgba(0 0 0);
--text-secondary: rgba(0 0 0);
--button-bg: rgb(0, 255, 89);
--button-text: rgba(0 0 0);
--button-border: rgba(0 0 0);
--background: rgb(255, 0, 0);
--foreground: rgba(255, 254, 255, 1);
--bg-primary: rgb(0, 238, 99);
--card: rgb(255, 0, 0);
--card-foreground: rgba(25, 25, 25, 1);
--popover: rgba(255, 255, 255, 1);
--popover-foreground: rgba(25, 25, 25, 1);
--primary: rgb(248, 2, 2);
--primary-foreground: rgba(255, 250, 250, 1);
--secondary: rgb(60, 0, 255);
--secondary-foreground: rgb(0, 0, 0);
--muted: rgba(247, 247, 247, 1);
--muted-foreground: rgba(109, 109, 109, 1);
--accent: rgb(30, 0, 149);
--accent-foreground: rgb(5, 0, 148);
--destructive: rgba(255, 51, 51, 1);
--destructive-foreground: rgb(255, 0, 0);
--border: rgb(0, 0, 0);
--input: rgb(255, 0, 0);
--ring: rgba(25, 25, 25, 1);
--radius: 0.5rem;
--form-background: rgb(255, 0, 0);
}
}
.layout-body {
position: relative;
/* width: 100vw;
height: 100vh; */
width: 100%;
height: 100%;
padding: 0;
/* overflow: hidden; */
margin: 0;
background-color: #ffffff00;
}
.background-container {
position: fixed;
width: 100vw;
height: 100vh;
z-index: -10;
overflow: hidden;
}
.imagebackground {
width: 150%;
height: 150%;
object-fit: cover;
object-position: 70% 12%;
background-repeat: no-repeat;
background-position: center center;
z-index: -10;
overflow: hidden;
}
@layer base {
/* html,
body {
@apply h-full;
} */
}
@layer base {
* {
@apply border-border;
}
body {
@apply text-foreground font-helvetica200 gap-2;
}
.form-container {
@apply flex justify-center text-2xl font-bold mb-4;
}
form-wrapper {
@apply flex flex-col items-start;
}
/* Wiederverwendbare Formularfelder: */
/* .form-style {
margin: 0;
} */
/* form-style .custom-label {
text-transform: uppercase;
line-height: 1.5rem;
font-family: roboto500, arial;
}
form-style .custom-body {
background-color: #efefef;
;
}
form-style .custom-input {
border-radius: 0.5rem;
border: none;
background-color: #fff;
padding: 0.8rem 1.5rem;
margin-bottom: 2rem;
height: 50rem;
width: 40rem;
} */
}
@layer components {
a {
@apply text-black leading-6 gap-x-5 gap-y-5;
}
a:link {
@apply text-black leading-6 gap-x-5 gap-y-5;
}
a:visited {
@apply text-black leading-6;
}
.container-landingpage {
@apply flex items-center justify-start h-screen;
}
.layout-full-left {
@apply container mx-0 px-20 md:px-12 space-y-6;
}
.layout-grid-left {
@apply grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 mx-0 px-4;
}
.layout-center-left {
@apply container mx-0 px-4 md:px-8 max-w-2xl;
}
/*
.form-field {
@apply max-w-form-field bg-white text-black border border-gray-300 rounded-md p-2;
} */
.move_button {
@apply absolute inset-y-0 left-10;
}
/* @apply absolute inset-y-52 left-10 w-16; */
.footer-text {
@apply font-roboto300 text-base leading-relaxed text-text-secondary;
}
.header {
@apply bg-white py-2 z-10;
}
.header-content {
@apply container mx-auto flex justify-between items-center;
}
.nav-link {
@apply text-black hover:underline;
}
.header-button {
@apply text-black hover:text-gray-700;
}
.header-link-container {
@apply flex items-center gap-12;
}
.admin-page {
@apply min-h-screen container mx-auto py-8;
}
.admin-container {
@apply flex flex-col gap-12;
}
.create-user-section,
.user-list-section {
@apply p-4 text-black rounded-lg shadow-md;
}
.create-user-section h2,
.user-list-section h2 {
@apply text-2xl font-bold mb-4;
}
.page-container {
@apply flex items-center justify-start ml-40 -mt-10 min-h-screen;
}
.form-container {
@apply flex justify-center text-5xl font-bold mb-4;
}
.form-wrapper {
@apply flex flex-col items-start;
}
/* Wiederverwendbare Formularfelder: */
/* .form-style {
margin: 0;
} */
.form-style .custom-label {
text-transform: uppercase;
font-family: roboto500, arial;
}
.form-style .custom-body {
background-color: #efefef;
}
.form-style .custom-input {
border-radius: 0.5rem;
border: none;
background-color: #fff;
padding: 0.8rem 1rem;
margin-bottom: 1rem;
width: 40rem;
}
.card {
@apply p-5 m-3 bg-white;
}
.card-inner {
@apply p-1 gap-2;
}
.status-message {
@apply bg-green-100 text-green-800 px-4 py-2 flex items-center rounded-lg;
}
.page-layout {
@apply absolute top-44 left-28;
}
.page-header {
@apply flex justify-between items-center mb-8;
}
.page-title {
@apply text-6xl font-helvetica500 object-left-top;
}
.task-grid {
@apply grid grid-cols-3 gap-2;
}
.no-tasks-message {
@apply flex flex-col gap-2 mb-8 justify-center items-center mt-24;
}
.no-tasks-text {
@apply text-2xl;
}
.smaller-card {
max-width: 300px;
}
.status-text {
@apply text-2xl flex-col px-1;
}
.status-container {
@apply flex object-left;
}
/* DONE neue buttons */
button,
.btn,
.button-random .button {
@apply border-2 border-solid border-black rounded-lg px-8 py-4 text-center font-roboto500 text-lg my-8 cursor-pointer;
}
button:hover,
.button_hover :hover {
@apply underline bg-gray-400;
}
button:disabled,
.download-button-disabled {
@apply bg-muted text-muted-foreground cursor-not-allowed;
}
.button-enabled,
.download-button-enabled,
.primary-button,
.button-primary {
@apply py-2 px-2 text-primary-foreground;
}
.button-enabled:hover,
.download-button-enabled:hover,
.primary-button:hover,
.button-primary:hover {
@apply bg-primary-foreground text-primary;
}
primary-button .button-destructive,
.btn-destructive {
@apply bg-destructive text-destructive-foreground;
}
.button-destructive:hover,
.btn-destructive:hover {
@apply bg-opacity-90;
}
.button-ghost,
.button_new {
@apply bg-transparent text-foreground;
}
.button-ghost:hover,
.button_new:hover {
@apply bg-muted text-muted-foreground;
}
.button-container {
@apply flex -left-6;
}
.a {
@apply py-2 px-2 text-primary-foreground box-border text-black leading-6 gap-x-5 gap-y-5 gap-10;
}
.a:link {
@apply text-black leading-6 gap-x-5 gap-y-5;
}
.a:visited {
@apply text-black leading-6;
}
/*TODO Alte buttons */
}