-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfirmationstyle.css
49 lines (43 loc) · 979 Bytes
/
confirmationstyle.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
* {
box-sizing: border-box;
margin: 0;
font-family: 'Roboto Slab', serif;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-image: url(./background.jpg);
}
.card {
height: 200px;
width: 400px;
background-color: rgba(55, 26, 27, 0.9);
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 32px;
border-radius: 15px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
color: white;
}
button {
width: 200px;
height: 35px;
border-radius: 5px;
border: none;
background-color: rgba(138, 147, 97, 0.9);
font-weight: 900;
font-size: 1.1rem;
color: black;
}
button:hover {
background-color: rgba(138, 147, 97, 1);
cursor: pointer;
}
p {
font-weight: 700;
font-size: 1.5rem;
}