-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueue-system.css
105 lines (91 loc) · 1.71 KB
/
queue-system.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
/* Base styles */
:root {
--primary-color: #14213d;
--highlight-color: #e5e5f7;
--text-color: #333;
--shadow: 0 2px 4px rgba(0,0,0,0.1);
}
body {
margin: 0;
padding: 20px;
font-family: system-ui, -apple-system, sans-serif;
background-color: #fff;
}
.container {
max-width: 400px;
margin: 0 auto;
padding: 20px;
}
.title {
color: var(--primary-color);
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 2rem;
text-align: center;
}
/* Form styles */
.queue-form {
display: flex;
flex-direction: column;
gap: 1rem;
}
.input-field {
padding: 12px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 1rem;
background-color: var(--highlight-color);
transition: border-color 0.2s;
}
.input-field:focus {
outline: none;
border-color: var(--primary-color);
}
.checkbox-container {
display: flex;
align-items: center;
gap: 8px;
margin: 1rem 0;
font-size: 0.9rem;
color: var(--text-color);
}
.submit-button {
padding: 12px 24px;
background-color: var(--primary-color);
color: white;
border: none;
border-radius: 6px;
font-size: 1rem;
cursor: pointer;
transition: opacity 0.2s;
}
.submit-button:disabled {
opacity: 0.5;
cursor: not-allowed;
}
/* Queue page styles */
.queue-status {
text-align: center;
margin-bottom: 2rem;
}
.queue-number {
font-size: 2rem;
color: var(--primary-color);
font-weight: bold;
}
.queue-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 1rem;
margin-top: 2rem;
}
.queue-item {
padding: 1rem;
background-color: var(--highlight-color);
border-radius: 6px;
text-align: center;
}
.queue-item.current {
background-color: var(--primary-color);
color: white;
}