-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpremiumoffer.css
84 lines (75 loc) · 1.42 KB
/
premiumoffer.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
*{
margin:0;
padding:0;
box-sizing: border-box;
font-family: 'poppins',sans-serif;
}
.container{
width: 100%;
min-height:100vh ;
/* background: #5c539d; */
/* background: grey; */
background: rgb(23, 12, 12);
}
.container h2{
color: #fff;
font-size: 32px;
padding: 50px 0;
text-align: center;
}
.price-row{
width: 90%;
max-width: 1100px;
margin: auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
grid-gap: 25px;
}
.price-col{
background: #1f283b;
padding: 10% 15%;
border-radius: 10px;
color: #fff;
text-align: center;
}
.price-col p{
font-size: 22px;
}
.price-col h3{
font-size:44px;
margin: 20px 0 40px;
font-weight: 500px;
}
.price-col h3 span{
font-size: 16px;
}
.price-col ul{
text-align: left;
margin: 20px 0;
color: #ddd;
list-style: none;
}
.price-col ul li{
margin: 15px 0;
}
.price-col ul li::before{
content: '\2022';
color: #e33058;
font-weight: bold;
margin-right: 8px;
}
.price-col button{
width: 100%;
padding: 14px 0;
background:transparent ;
color: #fff;
font-size: 15px;
border: 1px solid #e33058;
border-radius: 6px;
margin-top: 30px;
cursor: pointer;
transition: 0.5s;
}
.price-col button:hover{
background:#e33058;
}