Spaces:
Sleeping
Sleeping
Update static/style.css
Browse files- static/style.css +22 -0
static/style.css
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
.accordion {
|
| 2 |
background-color:#F4C2C2 ; /*gray;*/
|
| 3 |
color: white;
|
|
|
|
| 1 |
+
#all{
|
| 2 |
+
position: fixed; /* Sit on top of the page content */
|
| 3 |
+
display: none; /* Hidden by default */
|
| 4 |
+
width: 100%; /* Full width (cover the whole page) */
|
| 5 |
+
height: 100%; /* Full height (cover the whole page) */
|
| 6 |
+
top: 0;
|
| 7 |
+
left: 0;
|
| 8 |
+
right: 0;
|
| 9 |
+
bottom: 0;
|
| 10 |
+
background-color: rgba(0,0,0,0.5); /* Black background with opacity */
|
| 11 |
+
z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
|
| 12 |
+
|
| 13 |
+
}
|
| 14 |
+
#pleasewait{
|
| 15 |
+
position: absolute;
|
| 16 |
+
top: 50%;
|
| 17 |
+
left: 50%;
|
| 18 |
+
font-size: 20px;
|
| 19 |
+
color: black;
|
| 20 |
+
transform: translate(-50%,-50%);
|
| 21 |
+
-ms-transform: translate(-50%,-50%);
|
| 22 |
+
}
|
| 23 |
.accordion {
|
| 24 |
background-color:#F4C2C2 ; /*gray;*/
|
| 25 |
color: white;
|