Skip to content

Commit 295bf5d

Browse files
committed
Fix caching - bump version to force refresh of CSS and JS
1 parent 4229a32 commit 295bf5d

25 files changed

Lines changed: 1289 additions & 446 deletions

www/css/auth.css

Lines changed: 32 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
left: 0;
55
width: 100%;
66
height: 100%;
7-
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
7+
background: var(--primary-gradient);
88
display: flex;
99
align-items: center;
1010
justify-content: center;
@@ -13,9 +13,9 @@
1313
}
1414

1515
.auth-container {
16-
background: white;
17-
border-radius: 16px;
18-
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
16+
background: var(--card-bg);
17+
border-radius: var(--radius-xl);
18+
box-shadow: var(--shadow-xl);
1919
max-width: 420px;
2020
width: 100%;
2121
overflow: hidden;
@@ -34,7 +34,7 @@
3434
}
3535

3636
.auth-header {
37-
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
37+
background: var(--primary-gradient);
3838
color: white;
3939
padding: 32px 24px;
4040
text-align: center;
@@ -53,8 +53,8 @@
5353

5454
.auth-tabs {
5555
display: flex;
56-
background: #f8f9fa;
57-
border-bottom: 1px solid #dee2e6;
56+
background: var(--light-bg);
57+
border-bottom: 1px solid var(--border-color);
5858
}
5959

6060
.auth-tab {
@@ -64,27 +64,27 @@
6464
border: none;
6565
font-size: 16px;
6666
font-weight: 600;
67-
color: #6c757d;
67+
color: var(--text-secondary);
6868
cursor: pointer;
69-
transition: all 0.3s;
69+
transition: all var(--transition);
7070
border-bottom: 3px solid transparent;
7171
pointer-events: auto;
7272
opacity: 1;
7373
}
7474

7575
.auth-tab:hover {
76-
color: #495057;
77-
background: #f8f9fa;
76+
color: var(--text-primary);
77+
background: var(--light-bg);
7878
}
7979

8080
.auth-tab.active {
81-
color: #667eea;
82-
border-bottom-color: #667eea;
83-
background: white;
81+
color: var(--primary-color);
82+
border-bottom-color: var(--primary-color);
83+
background: var(--card-bg);
8484
}
8585

8686
.auth-tab.active:hover {
87-
background: white;
87+
background: var(--card-bg);
8888
}
8989

9090
.auth-form {
@@ -94,7 +94,7 @@
9494
.auth-form h2 {
9595
font-size: 24px;
9696
margin-bottom: 24px;
97-
color: #212529;
97+
color: var(--text-primary);
9898
}
9999

100100
.form-group {
@@ -105,23 +105,25 @@
105105
display: block;
106106
font-size: 14px;
107107
font-weight: 600;
108-
color: #495057;
108+
color: var(--text-primary);
109109
margin-bottom: 8px;
110110
}
111111

112112
.form-group input {
113113
width: 100%;
114114
padding: 12px 16px;
115115
font-size: 16px;
116-
border: 2px solid #dee2e6;
117-
border-radius: 8px;
118-
transition: all 0.3s;
116+
border: 2px solid var(--border-color);
117+
border-radius: var(--radius);
118+
transition: all var(--transition);
119+
background: var(--card-bg);
120+
color: var(--text-primary);
119121
}
120122

121123
.form-group input:focus {
122124
outline: none;
123-
border-color: #667eea;
124-
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
125+
border-color: var(--primary-color);
126+
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
125127
}
126128

127129
.auth-btn {
@@ -130,17 +132,18 @@
130132
font-size: 16px;
131133
font-weight: 600;
132134
color: white;
133-
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
135+
background: var(--primary-gradient);
134136
border: none;
135-
border-radius: 8px;
137+
border-radius: var(--radius);
136138
cursor: pointer;
137-
transition: all 0.3s;
139+
transition: all var(--transition);
138140
margin-top: 8px;
141+
box-shadow: var(--shadow-sm);
139142
}
140143

141144
.auth-btn:hover {
142145
transform: translateY(-2px);
143-
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
146+
box-shadow: var(--shadow-lg);
144147
}
145148

146149
.auth-btn:active {
@@ -151,11 +154,11 @@
151154
text-align: center;
152155
margin-top: 16px;
153156
font-size: 14px;
154-
color: #6c757d;
157+
color: var(--text-secondary);
155158
}
156159

157160
.auth-link a {
158-
color: #667eea;
161+
color: var(--primary-color);
159162
text-decoration: none;
160163
font-weight: 600;
161164
}
@@ -177,7 +180,7 @@
177180
body {
178181
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
179182
background: var(--light-bg);
180-
color: var(--dark-color);
183+
color: var(--text-primary);
181184
line-height: 1.6;
182185
-webkit-font-smoothing: antialiased;
183186
-webkit-text-size-adjust: 100%;

0 commit comments

Comments
 (0)