Spaces:
Runtime error
Runtime error
Create static/style.css
Browse files- static/style.css +34 -0
static/style.css
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
background: linear-gradient(135deg, #FFB6C1, #FF6347);
|
3 |
+
font-family: Arial, sans-serif;
|
4 |
+
color: white;
|
5 |
+
text-align: center;
|
6 |
+
padding: 100px 0;
|
7 |
+
}
|
8 |
+
|
9 |
+
.container {
|
10 |
+
background: rgba(0, 0, 0, 0.5);
|
11 |
+
border-radius: 10px;
|
12 |
+
padding: 40px;
|
13 |
+
width: 300px;
|
14 |
+
margin: 0 auto;
|
15 |
+
}
|
16 |
+
|
17 |
+
h1 {
|
18 |
+
font-size: 36px;
|
19 |
+
}
|
20 |
+
|
21 |
+
button {
|
22 |
+
background-color: #FF6347;
|
23 |
+
border: none;
|
24 |
+
padding: 15px;
|
25 |
+
font-size: 18px;
|
26 |
+
color: white;
|
27 |
+
cursor: pointer;
|
28 |
+
border-radius: 5px;
|
29 |
+
width: 100%;
|
30 |
+
}
|
31 |
+
|
32 |
+
button:hover {
|
33 |
+
background-color: #FF4500;
|
34 |
+
}
|