Spaces:
Runtime error
Runtime error
Create static/css/style.css
Browse files- static/css/style.css +29 -0
static/css/style.css
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
font-family: Arial, sans-serif;
|
| 3 |
+
text-align: center;
|
| 4 |
+
margin: 20px;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
video {
|
| 8 |
+
border: 2px solid #333;
|
| 9 |
+
margin: 10px;
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
button {
|
| 13 |
+
padding: 10px 20px;
|
| 14 |
+
font-size: 16px;
|
| 15 |
+
cursor: pointer;
|
| 16 |
+
background-color: #4CAF50;
|
| 17 |
+
color: white;
|
| 18 |
+
border: none;
|
| 19 |
+
border-radius: 5px;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
button:hover {
|
| 23 |
+
background-color: #45a049;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
#message {
|
| 27 |
+
color: green;
|
| 28 |
+
font-size: 18px;
|
| 29 |
+
}
|