-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponsive.css
42 lines (32 loc) · 893 Bytes
/
responsive.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
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px){
.nav{
height: 50px;
}
.logo{
margin:0px 0px 0px 10px;
}
.logo h1{
font-size: 1rem;
}
.menu{
margin-top:5px;
}
.menu ul li:not(:last-child){
margin-right: 10px;
}
.menu ul li:last-child{
margin-right: 5px;
}
.menu ul li a{
font-size: 0.5rem;
}
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px){}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px){}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px){}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px){}