Spaces:
Paused
Paused
Update styles.css
Browse files- styles.css +31 -28
styles.css
CHANGED
@@ -1,29 +1,32 @@
|
|
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 |
-
border
|
26 |
-
|
27 |
-
|
28 |
-
|
|
|
|
|
|
|
29 |
}
|
|
|
1 |
+
/* Highlight active elements */
|
2 |
+
input[type="text"]:focus, button:hover, button:focus {
|
3 |
+
border: 2px solid #f1c40f; /* Gold border for emphasis */
|
4 |
+
box-shadow: 0 0 5px #f1c40f;
|
5 |
+
}
|
6 |
+
|
7 |
+
/* Add color accents to section headers */
|
8 |
+
h2, h3 {
|
9 |
+
color: #f39c12; /* Orange for headers */
|
10 |
+
border-bottom: 2px solid #f39c12; /* Optional: border for separation */
|
11 |
+
padding-bottom: 5px;
|
12 |
+
}
|
13 |
+
|
14 |
+
/* Add subtle background to examples */
|
15 |
+
.gr-examples {
|
16 |
+
background-color: #2c3e50; /* Dark background for examples section */
|
17 |
+
padding: 10px;
|
18 |
+
border-radius: 5px;
|
19 |
+
}
|
20 |
+
|
21 |
+
/* Button styling */
|
22 |
+
button {
|
23 |
+
background-color: #3498db; /* Blue background */
|
24 |
+
color: white; /* White text */
|
25 |
+
border: none; /* Remove default border */
|
26 |
+
padding: 10px 20px; /* Add padding */
|
27 |
+
border-radius: 5px; /* Rounded corners */
|
28 |
+
}
|
29 |
+
|
30 |
+
button:hover {
|
31 |
+
background-color: #2980b9; /* Darker blue on hover */
|
32 |
}
|