-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
50 lines (42 loc) · 896 Bytes
/
style.css
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
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
font-family: Arial, sans-serif;
}
.container {
background-color: #e0e5ec;
padding: 40px;
border-radius: 10px;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
text-align: center;
transition: transform 0.3s ease;
}
.container:hover {
transform: translateY(-5px);
box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
}
h1 {
font-size: 24px;
margin-bottom: 20px;
color: #fff;
}
p {
margin-bottom: 10px;
}
#status {
font-weight: bold;
font-size: 18px;
}
#error {
color: #c0392b;
}
.container.success {
background-color: #27ae60;
color: #fff;
}
.container.error {
background-color: #c0392b;
color: #fff;
}