Spaces:
Sleeping
Sleeping
Update static/css/styles.css
Browse files- static/css/styles.css +22 -6
static/css/styles.css
CHANGED
@@ -1,19 +1,35 @@
|
|
1 |
body {
|
2 |
-
font-family: Arial, sans-serif;
|
3 |
background-color: #f7f7f7;
|
|
|
4 |
margin: 0;
|
5 |
padding: 0;
|
6 |
}
|
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
button {
|
9 |
-
background-color: #
|
10 |
-
color:
|
11 |
-
padding: 10px;
|
12 |
border: none;
|
|
|
13 |
border-radius: 5px;
|
14 |
cursor: pointer;
|
|
|
15 |
}
|
16 |
|
17 |
button:hover {
|
18 |
-
background-color: #
|
19 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
body {
|
2 |
+
font-family: 'Arial', sans-serif;
|
3 |
background-color: #f7f7f7;
|
4 |
+
color: #333;
|
5 |
margin: 0;
|
6 |
padding: 0;
|
7 |
}
|
8 |
|
9 |
+
#popup_image {
|
10 |
+
width: 100%;
|
11 |
+
height: auto;
|
12 |
+
border-radius: 10px;
|
13 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
14 |
+
}
|
15 |
+
|
16 |
button {
|
17 |
+
background-color: #ff7043;
|
18 |
+
color: #fff;
|
|
|
19 |
border: none;
|
20 |
+
padding: 10px 20px;
|
21 |
border-radius: 5px;
|
22 |
cursor: pointer;
|
23 |
+
font-size: 16px;
|
24 |
}
|
25 |
|
26 |
button:hover {
|
27 |
+
background-color: #ff5722;
|
28 |
+
}
|
29 |
+
|
30 |
+
.modal {
|
31 |
+
background: white;
|
32 |
+
padding: 20px;
|
33 |
+
border-radius: 10px;
|
34 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
35 |
+
}
|