forked from hemang-mishra/DBMSProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsplash.css
More file actions
45 lines (41 loc) · 851 Bytes
/
splash.css
File metadata and controls
45 lines (41 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* Splash screen styles */
.splash-screen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
/* Semi-transparent black */
color: white;
display: flex;
justify-content: center;
align-items: center;
font-size: 2em;
opacity: 1;
z-index: 1000;
visibility: hidden;
/* Hidden by default */
transition: visibility 0s, opacity 1s linear;
/* Fade out animation */
}
.splash-screen.show {
visibility: visible;
opacity: 1;
}
.splash-screen.hide {
opacity: 0;
visibility: hidden;
}
/* Button styling */
.place-order-button {
padding: 10px 20px;
font-size: 1.2em;
background-color: #28a745;
color: white;
border: none;
cursor: pointer;
}
.place-order-button:hover {
background-color: #218838;
}