-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclass.css
More file actions
220 lines (197 loc) · 4.51 KB
/
class.css
File metadata and controls
220 lines (197 loc) · 4.51 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
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
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
text-align: center;
}
/*nav bar css*/
nav {
display: flex;
align-items: center;
background: #1a202c;
padding: 10px 20px;
position: sticky;/*sticky*/
top: 0;
z-index: 1000;
}
/* Custom Font Style for Our Classes */
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
.class-heading {
font-size: 2.5rem;
color: black;
font-weight: bold;
text-transform: uppercase;
font-family:"Lobster", serif;
};
/* Section Styling */
section {
margin: 40px 0;
}
/* Skills and ECA Containers */
.skills-container, .eca-container, .class-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
padding: 20px;
}
/* Card Styles */
.skill-card, .eca-card, .class {
background: white;
padding: 20px;
border-radius: 10px;
width: 300px;
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
}
.skill-card img, .eca-card img, .class img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 10px;
}
.skill-card h2, .eca-card h2, .class h3 {
color: black;
font-size: 1.5rem;
margin: 10px 0;
}
.skill-card p, .eca-card p, .class p {
color: black;
font-size: 1rem;
}
.skill-card:hover, .eca-card:hover, .class:hover {
transform: scale(1.05);
}
/* Responsive Design */
@media (max-width: 768px) {
.skills-container, .eca-container, .class-container {
flex-direction: column;
align-items: center;
}
}
/*for daily routine*/
/* General Section Styling */
section {
margin: 50px auto;
padding: 40px 20px;
text-align: center;
}
/* Headings */
h2 {
font-size: 2rem;
color: #333;
font-weight: bold;
margin-bottom: 20px;
}
/* Daily Routine Section */
.routine-container {
display: flex;
flex-direction: column;
align-items: center;
background: #f9f9f9;
padding: 30px;
border-radius: 10px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
max-width: 600px;
margin: 0 auto;
}
.routine-container img {
width: 100%;
max-width: 500px;
height: auto;
border-radius: 10px;
margin-bottom: 15px;
}
.routine-container p {
font-size: 1.1rem;
color: #555;
line-height: 1.6;
}
/* Teacher & Parent Involvement */
.involvement-container {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
max-width: 1000px;
margin: 0 auto;
}
.involvement-item {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
width: 300px;
transition: transform 0.3s ease;
}
.involvement-item img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 10px;
}
.involvement-item p {
font-size: 1rem;
color: #444;
margin-top: 10px;
}
/* Hover Effect */
.involvement-item:hover {
transform: scale(1.05);
}
/* Responsive Design */
@media (max-width: 768px) {
.routine-container, .involvement-container {
flex-direction: column;
align-items: center;
}
}
/* Gallery Section */
.gallery {
text-align: center;
padding: 40px 20px; /* Reduced padding to move heading up */
background-color: #f9f9f9;
}
.gallery h2 {
font-size: 2.2rem;
color: #333;
font-weight: bold;
margin-bottom: 8px; /* Reduced margin to move it up */
}
/* Gallery Container */
.gallery-container {
display: flex;
justify-content: center;
gap: 23px; /* Increased gap for better spacing */
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
}
/* Gallery Images */
.gallery-container img {
width: 400px; /* Increased width */
height: 300px; /* Increased height */
object-fit: cover;
border-radius: 12px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
/* Hover Effect */
.gallery-container img:hover {
transform: scale(1.07);
box-shadow: 0px 7px 14px rgba(0, 0, 0, 0.2);
}
/* Responsive Design */
@media (max-width: 768px) {
.gallery-container {
flex-direction: column;
align-items: center;
}
.gallery-container img {
width: 100%;
height: auto;
}
}