matt HOFFNER
commited on
Commit
·
e3c92ea
1
Parent(s):
9c00a03
cleanup styles
Browse files- app/globals.css +1 -1
- app/page.module.css +6 -1
app/globals.css
CHANGED
|
@@ -97,7 +97,7 @@ body {
|
|
| 97 |
|
| 98 |
a {
|
| 99 |
text-decoration: underline;
|
| 100 |
-
color:
|
| 101 |
}
|
| 102 |
|
| 103 |
@media (prefers-color-scheme: dark) {
|
|
|
|
| 97 |
|
| 98 |
a {
|
| 99 |
text-decoration: underline;
|
| 100 |
+
color: inherit;
|
| 101 |
}
|
| 102 |
|
| 103 |
@media (prefers-color-scheme: dark) {
|
app/page.module.css
CHANGED
|
@@ -264,12 +264,13 @@
|
|
| 264 |
font-size: 1rem; /* Font size */
|
| 265 |
font-weight: bold; /* Make the text a bit bolder */
|
| 266 |
color: white; /* Text color */
|
| 267 |
-
background-image: linear-gradient(to right, #000, #
|
| 268 |
cursor: pointer; /* Change cursor to indicate it's clickable */
|
| 269 |
transition: transform 0.2s, background-color 0.3s; /* Smooth transitions for interactions */
|
| 270 |
text-transform: uppercase; /* Optional: uppercase text */
|
| 271 |
letter-spacing: 0.05em; /* Spacing between letters */
|
| 272 |
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); /* Subtle shadow for depth */
|
|
|
|
| 273 |
}
|
| 274 |
|
| 275 |
.icon {
|
|
@@ -348,6 +349,10 @@
|
|
| 348 |
border: 1px solid #ddd;
|
| 349 |
border-radius: 4px;
|
| 350 |
background-color: transparent;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 351 |
}
|
| 352 |
|
| 353 |
/* Button styles */
|
|
|
|
| 264 |
font-size: 1rem; /* Font size */
|
| 265 |
font-weight: bold; /* Make the text a bit bolder */
|
| 266 |
color: white; /* Text color */
|
| 267 |
+
background-image: linear-gradient(to right, #000, #111827); /* Gradient background */
|
| 268 |
cursor: pointer; /* Change cursor to indicate it's clickable */
|
| 269 |
transition: transform 0.2s, background-color 0.3s; /* Smooth transitions for interactions */
|
| 270 |
text-transform: uppercase; /* Optional: uppercase text */
|
| 271 |
letter-spacing: 0.05em; /* Spacing between letters */
|
| 272 |
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); /* Subtle shadow for depth */
|
| 273 |
+
|
| 274 |
}
|
| 275 |
|
| 276 |
.icon {
|
|
|
|
| 349 |
border: 1px solid #ddd;
|
| 350 |
border-radius: 4px;
|
| 351 |
background-color: transparent;
|
| 352 |
+
color: inherit;
|
| 353 |
+
}
|
| 354 |
+
.input:focus {
|
| 355 |
+
border-color: #111827
|
| 356 |
}
|
| 357 |
|
| 358 |
/* Button styles */
|