-
Notifications
You must be signed in to change notification settings - Fork 431
Expand file tree
/
Copy pathPlans.css
More file actions
91 lines (90 loc) · 1.6 KB
/
Plans.css
File metadata and controls
91 lines (90 loc) · 1.6 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
.plans{
margin: 0;
padding: 0;
background: linear-gradient(rgba(91,87,115),rgb(0,0,0,1));
height: 100vh;
display: flex;
text-align: center;
justify-content: center;
}
.pricing-plan{
width: 300px;
border-radius: 25px;
box-shadow: 0 0 5px rgba(0,0,0,0.2);
overflow: hidden;
font-size: 16px;
line-height: 1.5;
color: #555555;
margin: 15px;
}
.pricing-plan_header{
padding: 25px;
background-color: rgb(30,50,100);
color: #ffffff;
}
.pricing_title{
margin: 0;
text-align: center;
font-size: 1.5em;
font-weight: 400;
}
.pricing-plan_summary{
margin: 0;
text-align: center;
font-size: 1em;
font-weight: 300;
}
.description{
padding: 25px;
background: white;
}
.list{
padding: 0;
margin: 0;
}
.feature{
list-style: none;
margin: 0;
padding-left: 25px;
position: relative;
font-size: 0.9em;
}
.feature:not(:last-child){
margin-bottom: 0.5em;
}
.feature::before{
content: "\2714";
color: #009578;
position: absolute;
left: 0;
}
.actions{
background: white;
padding: 25px;
border-top: 1px solid #eeeeee;
display: flex;
flex-direction: column;
}
.button{
display: inline-block;
margin: 15px auto;
padding: 8px 20px;
text-decoration: none;
color: #009578;
background: #ffffff;
border-radius: 5px;
border: 1px solid #009578;
text-transform: uppercase;
letter-spacing: 0.02em;
font-weight: bold;
}
.cost{
margin: 0;
text-align: center;
font-size: 2em;
color: #000;
}
.text{
margin: 0;
text-align: center;
}