-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
293 lines (237 loc) · 4.07 KB
/
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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
box-sizing: border-box;
margin: 0%;
padding: 0%;
}
.header {
color: black;
text-align: center;
}
nav {
align-items: center;
display: flex;
width: 100%;
position: fixed;
background-color: white;
justify-content: space-around;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
nav ul {
float: right;
}
nav ul li {
display: inline;
margin-left: 3rem;
}
nav ul li a {
cursor: pointer;
text-decoration: none;
font-size: 22px;
font-weight: 800;
}
li a:hover {
height: 88%;
color: #d7d3ee;
transition: transform 0.4s ease-in-out;
}
/* home */
.Home {
display: flex;
align-items: center;
height: max-content;
justify-content: center;
}
.Home_cont {
text-align: center;
max-width: 800px;
padding: 20px;
margin-bottom: 6rem;
}
.Home_3 {
display: flex;
justify-content: center;
}
.Home_cont h1 {
font-size: 3rem;
}
.btn {
background-color: blue;
width: 20%;
height: 3rem;
font-weight: 800;
color: white;
border-radius: 8px;
cursor: pointer;
}
.head_grid {
height: max-content;
background-color: #b51756;
}
.head {
margin-top: 3rem;
display: flex;
align-items: center;
height: max-content;
justify-content: center;
}
.head h1 {
font-size: 42px;
font-weight: 800;
}
.grid-container {
height: max-content;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
justify-content: center;
align-items: center;
}
.grid-item {
border: 1px solid #ccc;
padding: 20px;
background-color: white;
text-align: center;
margin: 10px;
height: min-content;
cursor: pointer;
}
.product-image {
max-width: 100%;
height: auto;
}
img {
transition: transform 0.4s ease-in-out;
cursor: pointer;
}
img:hover {
transform: scale(1.1);
}
/* page */
.course {
margin-top: 4rem;
height: 100vh;
display: block;
justify-content: center;
align-items: center;
background-color: violet;
}
.page-content2 {
margin: auto;
display: flex;
justify-content: center;
align-items: center;
}
.page-content2 {
font-size: 53px;
font-weight: 900;
}
.page-content {
display: flex;
justify-content: center;
align-items: center;
}
.page-content h3 {
margin: 2rem;
}
/* page price */
.all_heading {
height: 100vh;
background-color: #b999f5;
}
.price_heading {
display: flex;
margin-top: 2rem;
flex-direction: column;
align-items: center;
justify-content: flex-start;
}
.price_heading1 {
text-align: center;
width: 100%;
margin-bottom: 2rem;
}
.price_heading h1 {
font-size: 34px;
font-weight: 800;
}
.price_heading p {
font-size: 24px;
}
.main_price {
height: max-content;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
justify-content: space-around;
align-items: center;
}
/* Style for the pricing plan container */
.pricing-plan {
border: 1px solid #ccc;
padding: 20px;
background-color: white;
text-align: center;
margin: auto;
width: 75%;
height: min-conten;
cursor: pointer;
}
.price_heading h1 span {
color: blue;
}
/* Style for the plan heading */
.plan-heading {
font-size: 1.5em;
margin: 10px 0;
}
/* Style for the plan price */
.plan-price {
font-size: 1.2em;
color: #e74c3c;
/* Red color for price */
margin: 10px 0;
}
/* Style for the price description */
.price-description {
margin: 5px 0;
font-size: 0.9em;
}
/* Style for the price note */
.price-note {
font-size: 0.9em;
color: #999;
}
/* Style for the free button */
.free-button {
background-color: #3498db;
/* Blue color for button */
color: #fff;
padding: 10px 20px;
border: none;
cursor: pointer;
font-size: 1em;
border-radius: 5px;
margin: 10px 5px;
}
/* Style for the demo button */
.demo-button {
background-color: #27ae60;
/* Green color for button */
color: #fff;
padding: 10px 20px;
border: none;
cursor: pointer;
font-size: 1em;
border-radius: 5px;
margin: 10px 5px;
}
.plan-features {
padding: 0;
text-align: left;
margin-top: 20px;
}
.plan-features li {
margin: 5px 0;
font-size: 0.9em;
}