-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmedia.css
More file actions
36 lines (36 loc) · 988 Bytes
/
media.css
File metadata and controls
36 lines (36 loc) · 988 Bytes
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
.nav
{
font-size: 30px;
}
img{
width: 300px;
height: 300px;
}
@media only screen and (min-width:200px) and (max-width:400px)
{
.nav
{
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
}
}
@media only screen and (min-width:400px) and (max-width:700px)
{
.nav{
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
}
img{
visibility: hidden;
display: none;
}
}
@media only screen and (min-width:700px) and (max-width:900px)
{
.nav
{
background-color: yellow;
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
}
}