-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
193 lines (167 loc) · 4.29 KB
/
Copy pathstyle.css
File metadata and controls
193 lines (167 loc) · 4.29 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
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
:root{
--bg: #07090b;
--panel: rgba(15, 18, 20, 0.78);
--panel2: rgba(10, 12, 14, 0.78);
--text: #e9e6df;
--muted: rgba(233, 230, 223, 0.72);
--bronze: #c08a3f;
--amber: #ffcd78;
--rust: #8b3a2a;
--green: #2fe38a; /* resonance marker */
--greenSoft: rgba(47, 227, 138, 0.18);
--border: rgba(255,255,255,0.10);
--shadow: 0 18px 60px rgba(0,0,0,0.55);
}
*{ box-sizing: border-box; }
body{
margin: 0;
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
color: var(--text);
background:
radial-gradient(900px 600px at 20% 0%, rgba(192,138,63,0.16), transparent 60%),
radial-gradient(700px 600px at 80% 10%, rgba(47,227,138,0.10), transparent 55%),
radial-gradient(900px 700px at 50% 100%, rgba(139,58,42,0.10), transparent 60%),
linear-gradient(180deg, #050607 0%, #07090b 40%, #040506 100%);
min-height: 100vh;
}
.lounge{
width: min(980px, 94vw);
margin: 28px auto 48px;
padding: 18px 0;
}
.header{
padding: 18px 18px 10px;
border: 1px solid var(--border);
background: linear-gradient(180deg, rgba(15,18,20,0.70), rgba(10,12,14,0.70));
border-radius: 18px;
box-shadow: var(--shadow);
position: relative;
overflow: hidden;
}
.header::after{
content:"";
position: absolute;
inset: -2px;
background:
radial-gradient(600px 80px at 20% 0%, rgba(255,205,120,0.18), transparent 60%),
radial-gradient(420px 70px at 80% 10%, rgba(47,227,138,0.16), transparent 60%);
pointer-events: none;
}
h1{
margin: 0;
font-size: clamp(26px, 4vw, 40px);
letter-spacing: 0.5px;
}
.subtitle{
margin: 10px 0 0;
color: var(--muted);
line-height: 1.45;
}
.panel{
margin-top: 16px;
padding: 16px;
border: 1px solid var(--border);
background: linear-gradient(180deg, var(--panel), var(--panel2));
border-radius: 18px;
box-shadow: var(--shadow);
}
h2{
margin: 8px 0 10px;
font-size: 16px;
color: rgba(255,255,255,0.86);
letter-spacing: 0.3px;
}
.buttons{
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 14px;
}
.buttons button{
appearance: none;
border: 1px solid rgba(255,255,255,0.14);
background: rgba(255,255,255,0.04);
color: rgba(255,255,255,0.86);
padding: 10px 12px;
border-radius: 14px;
cursor: pointer;
transition: transform 120ms ease, background 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}
.buttons button:hover{
transform: translateY(-1px);
border-color: rgba(255,205,120,0.30);
box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}
.buttons button.active{
border-color: rgba(47,227,138,0.55);
background: linear-gradient(180deg, rgba(47,227,138,0.16), rgba(47,227,138,0.06));
box-shadow: 0 0 0 3px rgba(47,227,138,0.10), 0 14px 38px rgba(0,0,0,0.45);
}
.hint{
margin: 0 0 10px;
color: var(--muted);
}
textarea{
width: 100%;
min-height: 90px;
resize: vertical;
border-radius: 14px;
border: 1px solid rgba(255,255,255,0.14);
background: rgba(0,0,0,0.28);
color: rgba(255,255,255,0.92);
padding: 12px 12px;
line-height: 1.35;
outline: none;
}
textarea:focus{
border-color: rgba(47,227,138,0.45);
box-shadow: 0 0 0 3px rgba(47,227,138,0.10);
}
.order-row{
display: flex;
gap: 10px;
margin-top: 12px;
flex-wrap: wrap;
}
.order-btn{
border: 1px solid rgba(255,255,255,0.14);
background: linear-gradient(180deg, rgba(192,138,63,0.22), rgba(192,138,63,0.10));
color: rgba(255,255,255,0.92);
padding: 10px 14px;
border-radius: 14px;
cursor: pointer;
transition: transform 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}
.order-btn:hover{
transform: translateY(-1px);
border-color: rgba(255,205,120,0.35);
box-shadow: 0 12px 34px rgba(0,0,0,0.40);
}
.order-btn.secondary{
background: linear-gradient(180deg, rgba(47,227,138,0.16), rgba(47,227,138,0.06));
border-color: rgba(47,227,138,0.35);
}
.confirmation{
margin: 10px 0 0;
color: rgba(255,255,255,0.78);
}
.ticket{
margin-top: 14px;
padding: 14px;
border-radius: 16px;
border: 1px solid rgba(255,255,255,0.14);
background: rgba(0,0,0,0.35);
color: rgba(233,230,223,0.95);
white-space: pre-wrap;
line-height: 1.35;
overflow-x: auto;
}
.footer{
margin-top: 16px;
padding: 10px 16px;
color: rgba(233,230,223,0.70);
text-align: center;
border: 1px solid var(--border);
background: rgba(0,0,0,0.18);
border-radius: 18px;
}