forked from kennethlee/old-la-restaurants
-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
78 lines (78 loc) · 1.6 KB
/
style.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
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
body {
margin: 0;
}
nav {
height: 10vh;
font-family: 'Old Standard TT', serif;
background-color: rgb(237, 224, 206);
border-color: black;
border-top-width: 4px;
border-top-style: solid;
font-size: 30px;
position: relative;
box-sizing: border-box;
}
.more-stuff {
font-size: 18px;
position: absolute;
bottom: 0;
left: 5px;
}
.credit {
font-size: 18px;
position: absolute;
bottom: 0;
right: 5px;
}
.info {
padding: 6px 8px;
font: 14px/16px Arial, Helvetica, sans-serif;
background: white;
background: rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
}
.info h4 {
margin: 0 0 5px;
color: #777;
}
.legend {
line-height: 18px;
color: #555;
}
.legend i {
width: 18px;
height: 18px;
float: left;
margin-right: 8px;
opacity: 0.7;
}
a {
color: rgb(34, 34, 34);
-moz-transition: color 200ms ease;
-o-transition: color 200ms ease;
-webkit-transition: color 200ms ease;
transition: color 200ms ease;
text-decoration: none;
position: relative;
}
a:hover,
a:focus {
background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 2px, #55abad 2px, #55abad 3px, rgba(0, 0, 0, 0) 3px);
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
a:hover,
a:focus {
background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 2px, #55abad 2px, #55abad 2.5px, rgba(0, 0, 0, 0) 2.5px);
}
}
#map {
box-sizing: border-box;
height: 90vh;
border-top: 5px solid black;
border-bottom: 5px solid black;
}
.tagline {
font-family: 'Old Standard TT', serif;
font-style: italic;
}