-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsiveness.css
More file actions
55 lines (55 loc) · 1.01 KB
/
responsiveness.css
File metadata and controls
55 lines (55 loc) · 1.01 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
@media (max-width: 640px) {
header {
flex-direction: column;
align-items: flex-start;
min-height: 30vh;
position: static;
padding: 20px;
}
.hambuger{
display: block;
}
.hambuger.active .bar:nth-child(2){
opacity: 0;
}
.hambuger.active .bar:nth-child(1){
transform: translateY(8px);
}
.menu-items {
padding-top: 15px;
flex-direction: column;
gap: 15px;
}
.about {
grid-template-columns: 1fr;
min-height: 70vh;
padding: 0 20px;
}
.feature-list {
display: grid;
grid-template-columns: 1fr;
gap: 30px;
}
.content-with-image {
display: flex;
flex-direction: column;
gap: 50px;
}
.content-with-image-1{
display: flex;
flex-direction: column;
gap: 50px;
}
.skills {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.skills-projects {
grid-template-columns: 1fr;
}
.footer{
flex-direction: column;
gap: 100px;
}
}