-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcan_succ.css
More file actions
54 lines (47 loc) · 958 Bytes
/
can_succ.css
File metadata and controls
54 lines (47 loc) · 958 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
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f4f4f4;
}
.status-container {
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
text-align: center;
max-width: 400px;
width: 90%;
}
.status-title {
font-size: 2rem;
margin-bottom: 1rem;
}
.status-title.success {
color: green;
}
.status-title.canceled {
color: red;
}
.status-message {
font-size: 1.2rem;
margin-bottom: 2rem;
color: #555;
}
.back-btn {
background-color: #007BFF;
color: white;
border: none;
padding: 0.8rem 1.5rem;
font-size: 1rem;
border-radius: 5px;
cursor: pointer;
transition: all 0.2s ease-in-out;
}
.back-btn:hover {
background-color: #0056b3;
}