-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsive.css
More file actions
94 lines (75 loc) · 1.23 KB
/
Copy pathresponsive.css
File metadata and controls
94 lines (75 loc) · 1.23 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
94
@media only screen and (max-width: 1200px){
body{
font-size: 16px;
}
}
@media only screen and (max-width: 767px){
body{
font-size: .85em;
}
.nav-div ul{
display: none;
}
.mobile-nav-icon{
display: inline-block;
float: right;
}
.nav{
float: left;
display: block;
padding-left: 5%;
margin: 0;
}
.nav-div ul li{
display: block;
}
.nav-div ul li a:link,
.nav-div ul li a:visited{
display: block;
}
.nav li a::after{
display: none;
}
.info-row{
display: flex;
flex-direction: column;
overflow: hidden;
}
.info-row div:not(#map){
min-height: 300px;
}
.info-hours .wrapper{
display: flex;
flex-direction: column;
justify-content: center;
}
.info-hours .wrapper h3{
margin-top: 50px;
}
footer{
font-size: .8em
}
}
@media only screen and (max-width: 650px){
.general-info{
padding-top: 30px;
}
}
@media only screen and (max-width: 480px){
.general-info p{
font-size: 15px;
}
.restaurant-name h1{
font-size: 25px;
}
.footer-right p,
.footer-left p,
.footer-right ul li,
.footer-left ul li{
margin-bottom: 0;
margin-top: 0;
}
footer{
padding-bottom: 10px;
}
}