Spaces:
Sleeping
Sleeping
Create static/css/styles.css
Browse files- static/css/styles.css +32 -0
static/css/styles.css
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
font-family: Arial, sans-serif;
|
3 |
+
background-color: #f7f7f7;
|
4 |
+
margin: 0;
|
5 |
+
padding: 0;
|
6 |
+
}
|
7 |
+
|
8 |
+
.popup-container {
|
9 |
+
position: fixed;
|
10 |
+
top: 50%;
|
11 |
+
left: 50%;
|
12 |
+
transform: translate(-50%, -50%);
|
13 |
+
background: #ffffff;
|
14 |
+
border: 1px solid #ddd;
|
15 |
+
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
|
16 |
+
border-radius: 10px;
|
17 |
+
padding: 20px;
|
18 |
+
z-index: 999;
|
19 |
+
}
|
20 |
+
|
21 |
+
button {
|
22 |
+
background-color: #008cba;
|
23 |
+
color: white;
|
24 |
+
padding: 10px;
|
25 |
+
border: none;
|
26 |
+
border-radius: 5px;
|
27 |
+
cursor: pointer;
|
28 |
+
}
|
29 |
+
|
30 |
+
button:hover {
|
31 |
+
background-color: #005f5f;
|
32 |
+
}
|