-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmedia.css
53 lines (43 loc) · 829 Bytes
/
media.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
@media screen and (max-width: 1024px) {
body {
font-weight: normal;
}
}
@media screen and (max-width: 768px) {
body {
font-weight: bold;
}
nav ul li {
margin-left: 0;
width: 100%;
height: 25px;
line-height: 25px;
font-size: 20px;
}
.project-divs {
width: 45%;
}
}
@media screen and (max-width: 480px) {
nav {
width: 100%;
}
nav ul li {
margin:0 auto;
width: 100%;
height: 25px;
line-height: 25px;
font-size: 20px;
background-color: hotpink; /*Hidious*/
color: yellow; /*Also Hidious*/
}
body {
font-weight: bolder;
}
.p-left, .p-right {
margin:0 auto;
}
.project-divs {
width: 100%;
}
}