-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (95 loc) · 1.49 KB
/
Copy pathstyle.css
File metadata and controls
111 lines (95 loc) · 1.49 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container
{
width: 100%;
display: flex;
justify-content: space-evenly;
margin-top: 50px;
}
.card
{
position: relative;
width: 300px;
height: 420px;
background: #fff;
box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
border-radius: 10px;
display: flex;
flex-direction: column;
justify-content: space-evenly;
padding-left: 20px;
font-family: 'poppins';
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 i {
display: block;
width: 30px;
}
.fa-check{
color: #47d147;
}
.fa-timesP{
color: #ff3333;
}
.card p {
font-size: 14px;
}
.card p span {
font-size: 45px;
font-weight: 600;
color: #503e9d;
}
button {
width: 260px;
height: 40px;
font-size: 17px;
border: none;
background: #503e9d;
color: #fff;
font-family: 'poppins';
box-shadow: 0 9px 14px rgba(0, 0, 0, .3);
cursor: pointer;
}
#icon1 {
color: red !important;
}