-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpricingstyle.css
More file actions
108 lines (92 loc) · 1.77 KB
/
Copy pathpricingstyle.css
File metadata and controls
108 lines (92 loc) · 1.77 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
/* CSS for pricing page */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500&display=swap');
body {
font-family: 'Raleway', sans-serif;
line-height: 1.8;
margin: 0;
padding: 0;
}
.navbar {
background-color: black;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px;
}
.logo {
font-weight: 200;
letter-spacing: 4px;
margin: 0;
}
.nav-items {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
.nav-item {
margin-left: 20px;
padding: 15px
}
.nav-item a {
color: white;
text-decoration: none;
}
.pricing-section {
background-image: url('backk.jpg');
background-size: cover;
padding: 100px 0;
text-align: center;
color: white;
}
.pricing-heading {
font-size: 36px;
margin-bottom: 40px;
}
.pricing-plans {
display: flex;
justify-content: center;
}
.pricing-plan {
background-color: rgba(0, 0, 0, 0.7);
padding: 30px;
margin: 0 20px;
border-radius: 10px;
flex: 1;
max-width: 300px;
}
.pricing-plan h2 {
font-size: 24px;
margin-bottom: 20px;
}
.price {
font-size: 24px;
margin-bottom: 20px;
}
.features {
list-style: none;
padding: 0;
margin-bottom: 20px;
}
.features li {
margin-bottom: 10px;
}
.btn {
display: block;
background-color: black;
color: white;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #333;
}
.footer {
background-color: black;
color: white;
text-align: center;
padding: 20px 0;
}