forked from Fortune-dot/daraja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (95 loc) · 1.67 KB
/
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
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
94
95
96
97
*{
padding:0;
margin: 0;
box-sizing: border-box;
}
body{
background-color:#252935;
height: 100vh;
display:flex;
justify-content: center;
align-items: center;
}
.container{
width: 100%;
display:flex;
justify-content: space-evenly;
}
.card{
position: relative;
width: 300px;
height: 420px;
background:#fff ;
box-shadow:0 10px 20pxrgba(0,0,0,.3);
border-radius: 10px;
display:flex;
flex-direction: column;
justify-content:space-evenly;
padding-left: 20px;
font-family: sans-serif;
overflow: hidden;
}
.card::after , .card::before{
content: "";
position: absolute;
border-radius: 50%;
background: #503e9d;
opacity: 3;
}
.card::after{
top: -20%;
right: -20%;
width: 200px;
height: 200px;
}
.card::before{
top: -15%;
right: -13%;
width: 160px;
height: 160px;
}
.card h3{
color: #503e9d;
}
.details ul{
width:200px;
height: 180px;
list-style:none;
display:flex;
flex-direction: column;
justify-content: space-between;
}
.details ul li{
display:flex;
align-items: center;
font-size: 15px;
}
.details{
display: block;
width: 30px;
}
.fa-check{
color: #47d147;
}
.fa-times{
color: #ff3333;
}
.card p{
font-size: 14px;
}
.card p span{
font-size: 35px;
font-weight: 600;
color: #503e96;
}
button{
width: 260px;
height:40px;
font-size: 17px;
border: none;
background:#503e9d;
color:#fff;
font-family: sans-serif;
cursor:pointer;
box-shadow: 0 9px 14px rgba(0,0,0,.3);
}