-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmediaqueries.css
61 lines (48 loc) · 979 Bytes
/
mediaqueries.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
@media screen and (max-width: 1400px) {
.project-article-container {
flex-wrap: wrap;
}
#projects {
height: fit-content;
}
}
@media screen and (max-width: 850px) {
#desktop-nav {
display: none;
}
#hamburger-nav {
display: flex;
}
.about-section-container {
display: block;
}
section, .about-section-container {
height: fit-content;
}
section {
margin: 0 5%;
}
#contact {
padding: 2rem 0;
}
.contact-main-container {
gap: 2rem;
}
.skills-container, .details-container {
margin-top: 2rem;
}
.project-article-container, .skills-container {
margin-bottom: 2rem;
}
.contact-main-container {
flex-direction: column;
align-items: center;
}
.text-container p {
font-size: 1rem;
}
.footer {
margin-bottom: 2rem;
font-size: 0.75rem;
}
}