Skip to content

Commit d4c1632

Browse files
committed
Update static/styles.css
1 parent e4cfa89 commit d4c1632

File tree

1 file changed

+37
-3
lines changed

1 file changed

+37
-3
lines changed

static/styles.css

Lines changed: 37 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
--accent: #14b8a6;
88
--accent-hover: #2dd4bf;
99
--border-color: #52525b;
10+
--success-color: #22c55e;
11+
--error-color: #ef4444;
1012
}
1113

1214
* {
@@ -46,6 +48,7 @@ body {
4648
width: auto;
4749
}
4850

51+
/* Form styles */
4952
form {
5053
display: flex;
5154
flex-direction: column;
@@ -68,7 +71,7 @@ input:focus {
6871
border-color: var(--accent);
6972
}
7073

71-
button {
74+
button, .button {
7275
width: 100%;
7376
padding: 0.5rem 1rem;
7477
background-color: var(--accent);
@@ -79,9 +82,12 @@ button {
7982
font-weight: 500;
8083
cursor: pointer;
8184
transition: background-color 0.15s ease;
85+
text-align: center;
86+
text-decoration: none;
87+
display: inline-block;
8288
}
8389

84-
button:hover {
90+
button:hover, .button:hover {
8591
background-color: var(--accent-hover);
8692
}
8793

@@ -99,6 +105,34 @@ button:hover {
99105

100106
.registration-closed {
101107
text-align: center;
102-
color: #ef4444;
108+
color: var(--error-color);
103109
padding: 1rem 0;
110+
}
111+
112+
/* Status indicators */
113+
.status-indicator {
114+
font-size: 4rem;
115+
text-align: center;
116+
margin: 1rem 0;
117+
font-weight: bold;
118+
}
119+
120+
.status-indicator.success {
121+
color: var(--success-color);
122+
}
123+
124+
.status-indicator.error {
125+
color: var(--error-color);
126+
}
127+
128+
/* Message styles */
129+
.message {
130+
text-align: center;
131+
margin: 1.5rem 0;
132+
color: var(--text-secondary);
133+
line-height: 1.5;
134+
}
135+
136+
.message p {
137+
margin: 0.5rem 0;
104138
}

0 commit comments

Comments
 (0)