-
Notifications
You must be signed in to change notification settings - Fork 0
/
paySucess.css
93 lines (93 loc) · 1.77 KB
/
paySucess.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,200&display=swap');
*{
box-sizing:border-box;
font-family: 'Poppins', sans-serif;
margin:0;
}
body{
display:flex;
align-items:center;
justify-content: center;
height:95vh;
}
.alert-box{
padding:1rem;
margin:2rem;
width:60%;
margin:auto;
background: #1ff71c21;
border-radius: 10px;
box-shadow:rgba(0,0,0,0.24) 0px 3px 8px;
}
.alert{
display:flex;
align-items: center;
position: relative;
}
.alert .ico{
margin-right:2rem;
width:30px;
height:30px;
color:#39ff21;
font-size:50px;
transform:translateY(-40px);
}
.alert h3{
font-size:18px;
color:#28e53f;
}
.alert-content{
margin-top:1rem;
margin-bottom: 2rem;
font-size:16px;
color:#28e53f;
}
.alert .button{
color:#fff;
background: #1fe41c;
padding:0.5rem 1rem;
margin-right:1rem;
align-items: center;
text-align: center;
display: inline-flex;
outline:none;
border:none;
border-radius:10px;
cursor:pointer;
box-shadow:rgba(0,0,0,0.15) 2.4px 2.4px 3.2px;
}
.alert .button:hover{
color:#fff;
background: #21ce1e;
}
.button i{
font-size:17px;
margin-right:0.5em;
width:20px;
height:20px;
color:#fff;
}
.dismiss-btn{
border:1px solid #1fe41c;
border-radius:10px;
padding: 0.4rem 0.9rem;
background: transparent;
cursor: pointer;
color:#1fe41c;
box-shadow:rgba(0,0,0,0.15) 2.4px 2.4px 3.2px;
}
.dismiss-btn:hover{
background: #1fe41c;
color:#fff;
}
.img{
position:relative;
}
.img img{
width:100px;
position:absolute;
float:right;
right:-56px;
transform:translateY(-10px);
clip:rect(0px ,60px, 200px, 0px);
}