Rename static/style.css to static/styles.css
Browse files- static/style.css +0 -0
- static/styles.css +38 -0
static/style.css
DELETED
|
File without changes
|
static/styles.css
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
<style>
|
| 3 |
+
button {
|
| 4 |
+
background-color: #191970; /* Dark blue-gray color */
|
| 5 |
+
color: white;
|
| 6 |
+
padding: 8px 10px; /* Reduced padding by 20% */
|
| 7 |
+
border: 2px;
|
| 8 |
+
border-radius: 75px;
|
| 9 |
+
cursor: pointer;
|
| 10 |
+
margin: 5px;
|
| 11 |
+
font-size: 0.9em; /* Reduced font size by 10% to contribute to overall size reduction */
|
| 12 |
+
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.9), 0 4px 4px rgba(0, 0, 0, 0.9); /* 3D effect with shadow */
|
| 13 |
+
transform: translateY(0);
|
| 14 |
+
transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
|
| 15 |
+
}
|
| 16 |
+
button:hover {
|
| 17 |
+
background-color: #3A4DFB; /* Darker blue-gray on hover */
|
| 18 |
+
box-shadow: 0 7px 14px rgba(0, 255, 0.1, 0.9), 3px 3px 6px rgba(0, 255, 0.1, 0.3);
|
| 19 |
+
transform: translateY(-3px);
|
| 20 |
+
}
|
| 21 |
+
button:active {
|
| 22 |
+
transform: translateY(2px);
|
| 23 |
+
box-shadow: 0 3px 4px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(0, 0, 0, 0.3);
|
| 24 |
+
}
|
| 25 |
+
input[type="text"], input[type="password"], input[type="email"], input[type="number"], textarea, select {
|
| 26 |
+
background-color: rgba(0, 0, 100, 0.5); /* Transparent dark blue */
|
| 27 |
+
color: white;
|
| 28 |
+
border: 1px solid #4169E5; /* Royal blue border */
|
| 29 |
+
border-radius: 25px;
|
| 30 |
+
padding: 10px;
|
| 31 |
+
box-shadow: 0 0 15px #00FF00; /* Bright green shadow */
|
| 32 |
+
}
|
| 33 |
+
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="number"]:focus, textarea:focus, select:focus {
|
| 34 |
+
outline: none;
|
| 35 |
+
border-radius: 25px;
|
| 36 |
+
box-shadow: 0 0 15px #00FF00; /* Brighter green shadow on focus */
|
| 37 |
+
}
|
| 38 |
+
</style>
|