Spaces:
Sleeping
Sleeping
Create static/css/styles.css
Browse files- static/css/styles.css +28 -0
static/css/styles.css
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
font-family: Arial, sans-serif;
|
| 3 |
+
background-color: #f4f4f4;
|
| 4 |
+
color: #333;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
.gr-container {
|
| 8 |
+
max-width: 600px;
|
| 9 |
+
margin: 0 auto;
|
| 10 |
+
padding: 20px;
|
| 11 |
+
background: #ffffff;
|
| 12 |
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
| 13 |
+
border-radius: 8px;
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
.gr-button {
|
| 17 |
+
background-color: #007bff;
|
| 18 |
+
color: white;
|
| 19 |
+
border: none;
|
| 20 |
+
padding: 10px 20px;
|
| 21 |
+
margin-top: 10px;
|
| 22 |
+
border-radius: 4px;
|
| 23 |
+
cursor: pointer;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
.gr-button:hover {
|
| 27 |
+
background-color: #0056b3;
|
| 28 |
+
}
|