-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfirmation.css
More file actions
61 lines (53 loc) · 1013 Bytes
/
confirmation.css
File metadata and controls
61 lines (53 loc) · 1013 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #5c8bc6;
background: url('images/blur-hospital.jpg') no-repeat center center fixed;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.confirmation-box {
background-color: white;
padding: 20px;
border-radius: 10px;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
width: 300px;
}
h2 {
font-size: 24px;
margin-bottom: 20px;
}
.check-icon {
width: 100px;
height: 100px;
margin-bottom: 20px;
}
p {
font-size: 16px;
margin: 10px 0;
}
button {
background-color: #3b9a4c;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #2f7c3f;
}