-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pricing ex.css
100 lines (90 loc) · 2.62 KB
/
Pricing ex.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
98
99
100
<!DOCTYPE html>
<html>
<head>
<title>Flexbox Pricing Table</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Sono:wght@400;700&display=swap"
rel="stylesheet"
/>
<style>
body {
font-family: "Sono", sans-serif;
}
.pricing-container{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
gap: 100px;
}
.pricing-plan{
flex: 1;
max-width: 500px;
padding: 20px;
background-color: blueviolet;
border-radius: 10px;
text-align: center;
}
.plan-title{
font-size: 25px;
font-weight: bolder;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
margin-bottom: 10px;
}
.plan-price{
font-size: 30px;
font-weight: bold;
}
.plan-features{
font-size: 20px;
font-weight: lighter;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
.plan-button{
padding: 10px;
background-color: chartreuse;
font-size: small;
font-weight: bolder;
border-radius: 20px;
}
/* Hint: What can you do with a media query and flexbox? */
@media (max-width: 1250px) {
}
</style>
</head>
<body>
<div class="pricing-container">
<div class="pricing-plan">
<div class="plan-title">Basic</div>
<div class="plan-price">$9.99/month</div>
<ul class="plan-features">
<li>✅ 10GB Storage</li>
<li>✅ 1 User</li>
<li>🚫 Support</li>
</ul>
<button class="plan-button">Sign Up</button>
</div>
<div class="pricing-plan">
<div class="plan-title">Standard</div>
<div class="plan-price">$19.99/month</div>
<ul class="plan-features">
<li>✅ 50GB Storage</li>
<li>✅ 5 Users</li>
<li>✅ Phone & Email Support</li>
</ul>
<button class="plan-button">Sign Up</button>
</div>
<div class="pricing-plan">
<div class="plan-title">Premium</div>
<div class="plan-price">$49.99/month</div>
<ul class="plan-features">
<li>✅ 100GB Storage</li>
<li>✅ 10 Users</li>
<li>✅ 24/7 Support</li>
</ul>
<button class="plan-button">Sign Up</button>
</div>
</div>
</body>
</html>