-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqueries.css
More file actions
93 lines (71 loc) · 1.36 KB
/
queries.css
File metadata and controls
93 lines (71 loc) · 1.36 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
@media (max-width: 1200px) {
html, body {
font-size: 14px;
}
}
@media (max-width: 1100px) {
html, body {
font-size: 12px;
}
}
@media (orientation: portrait), (max-width: 900px) {
html, body {
font-size: 1.7vw;
}
/* NAVBAR */
#navbar ul {
justify-content: center;
margin: 0;
padding: 0;
}
#navbar li {
margin: 0;
padding: 0 4rem;
width: 8rem;
}
#navbar a {
text-align: center;
padding: 2rem 1rem;
font-size: 2rem;
/* border: 1px solid red; */
}
/* ABOUT SECTION */
#about {
padding: 16rem 0;
}
#about > div:nth-child(3) {
flex-direction: column;
align-items: center;
}
#about > div:nth-child(3) > div:nth-child(1) {
width: 80%;
font-size: 1.5rem;
margin-bottom: 15rem;
}
#word-wall {
margin-left: -5vw;
}
#bio-wrap h1 {
font-size: 4.41em;
}
#bio-wrap h2 {
font-size: 2.61em;
}
/* PROJECTS SECTION */
.projects {
min-height: auto;
}
#projects {
min-height: auto;
}
#projects-menu {
min-width: 80%;
}
/* CONTACT SECTION */
#contact {
justify-content: space-around;
}
#contact-menu {
margin-top: 3rem;
}
}