-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (50 loc) · 899 Bytes
/
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
body {
font-family: 'Sono', 'sans-serif';
}
.pricing-container {
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
gap: 2rem;
}
.pricing-plan {
flex: 1;
max-width: 500px;
padding: 20px;
background-color: #dbb4b4;
border-radius: 10px;
text-align: center;
}
.plan-title {
font-weight: bold;
font-size: 1.5rem;
margin-bottom: 15px;
}
.plan-price {
font-weight: bold;
font-size: 3rem;
margin-bottom: 15px;
}
.plan-features {
list-style: none;
padding: 0;
margin: 0;
}
.plan-features li {
margin-bottom: 15px;
}
.plan-button {
background-color: #ffffff;
border: none;
padding: 10px;
border-radius: 5px;
margin-top: 20px;
font-weight: bold;
}
@media (max-width: 1250px) {
.pricing-container {
flex-direction: column;
width: 100%;
}
}