-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (61 loc) · 1.18 KB
/
style.css
File metadata and controls
63 lines (61 loc) · 1.18 KB
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
62
63
*{
padding:0;
margin: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif ;
}
body{
background-color: rgb(247, 243, 243);
}
.wrapper{
width: 400px;
border: 1px solid white;
position: absolute;
transform: translate(-50%,-50%);
top: 50%;
left: 50%;
}
.container{
width: 100%;
background-color: rgb(230, 139, 230);
padding: 50px 40px;
box-sizing: 0 70px 65px rgba(87,11,16,0.5);
position: relative;
border-radius: 8px;
text-align: center;
}
.container:after{
content: "";
position: absolute;
width: 150%;
height: 150%;
background-color: rgb(75, 21, 66);
z-index: -1;
top: -25%;
left: -25%;
}
.container p{
color: rgb(3, 3, 3);
line-height: 1.5;
font-size: 18px;
font-weight: 500;
}
.container h3{
color: rgb(18, 24, 24);
margin: 20px 0 60px 0;
font-weight: 600;
text-transform: capitalize;
}
.container button{
background-color: rgb(248, 250, 252);
border:200px;
top: -2px;
margin: 5px 0 60px 0;
width:200px;
padding: 20px;
border-radius: 3px;
font-size: 18px;
font-weight: 600;
color: rgb(75, 21, 66);
cursor: pointer;
}