-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
290 lines (250 loc) · 4.76 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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
background-color: #111827;
color: #ffffff;
}
/* ---header section--- */
/* ----nav section---- */
.navsection{
display: flex;
gap: 30px;
margin: 45px;
}
/* ---Hamberger menu--- */
img[alt="hambrger"]{
height: 30px;
width: 30px;
display: none;
}
/* ----navigation menu----*/
.list{
display: flex;
flex-direction: row;
font-size: 28px;
position: absolute;
top: 30px;
right: 27px;
gap: 20px;
}
.list li{
list-style: none;
font-weight: 500;
cursor: pointer;
}
.list li:first-child{
background-color: rgb(79, 79, 209);
border-radius: 20px;
padding: 5px 10px;
}
/* ---main section--- */
.para{
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
max-width: 100vw;
margin: 30px;
gap: 30px;
}
/* ---para1--- */
.para1{
display: flex;
flex-direction: row;
gap: 10px;
font-weight: 600;
align-items: center;
}
/* ---Waving hand img --- */
.para1 img{
/* width: 3vw; */
height: 45px;
}
/*--- h1 size--- */
.para1 h1{
font-size: 45px;
}
/* ---para2--- */
.para2{
display: flex;
flex-direction: column;
justify-content: center;
gap: 5px;
}
/* ---para2 h1 size---- */
.para2 h1{
font-size: 75px;
}
/* ---para2 h2 size and colour---- */
.para2 h2{
font-size: 43px;
color: rgb(197, 197, 89);
}
/* ----Pc image--- */
.pcimage img{
width: 30vw;
}
/* ---Main section--- */
/* ---making underline on projects bottom--- */
.line{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
/* ---Giving height,width and colour to bottom--- */
.horizontal-line{
height: 10px;
width: 160px;
background-color: #0000ff;
border-radius: 20px;
margin-bottom: 10px;
}
.main{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 70px;
}
.main div h1 {
font-size: 50px;
font-weight: bold;
}
/* ----project list----- */
/* ---all project images--- */
.project-list{
display: grid;
grid-template-columns: 1fr 1fr;
align-content:center;
justify-items: center;
row-gap: 10px;
column-gap: 20px;
}
/* ---project image size--- */
.project-list img{
width: 20vw;
}
/* ----project image text--- */
.project-list div span{
display: flex;
flex-direction: column;
align-items:center;
justify-content: center;
font-size: 20px;
font-weight: 200;
}
/* --project--- */
.project{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 20px;
}
/* ----footer section---- */
/* ---horizontal line--- */
.horizontal-divider{
height: 10px;
width: 240px;
background-color: #0000ff;
border-radius: 20px;
margin-bottom: 10px;
}
/* ---contact me--- */
.footer h1 {
margin-top: 50px;
font-size: 50px;
font-weight: bold;
}
/* -------social media------- */
.social-media img{
width: 30px;
}
.social-media{
margin-top: 30px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
gap: 20px;
}
/*------- media query------ */
@media screen and (max-width:576px) {
.list li{
display: none;
}
img[alt="hambrger"]{
display: block;
}
.para{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.para1{
display: flex;
flex-direction: column;
}
.para1 h1{
font-size: 35px;
}
.para2{
display: flex;
flex-direction: column;
}
.para2 h1{
font-size: 50px;
}
.para2 h2{
font-size: 30px;
}
.pcimage img{
width: 60vw;
}
.main h1{
font-size: 30px;
}
.horizontal-line{
height: 8px;
width: 150px;
background-color: #0000ff;
border-radius: 20px;
margin-bottom: 10px;
}
.project-list{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
row-gap: 20px;
column-gap: 20px;
}
.project-list img{
width: 50vw;
}
.footer h1{
font-size: 30px;
}
.horizontal-divider{
height: 8px;
width: 150px;
background-color: blue;
border-radius: 20px;
margin-bottom: 10px;
}
.project-list div span{
display: flex;
flex-direction: column;
align-items:center;
justify-content: center;
font-size: 15px;
font-weight: 200;
}
.project{
margin-top: 10px;
}
}