Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
97 additions
and 101 deletions.
- +7 −101 app/index.html
- +90 −0 app/style.css
@@ -0,0 +1,90 @@ | ||
html, body, #map-canvas { | ||
height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
ul { | ||
list-style-position: outside; | ||
list-style-type: none; | ||
margin: 0 10px 0 0; | ||
padding: 0; | ||
} | ||
|
||
li { | ||
background-color: #fff; | ||
width: 100%; | ||
display: list-item; | ||
margin: 0; | ||
padding: 10px 15px; | ||
font-size: 1.4em; | ||
} | ||
|
||
li span { | ||
font-size: smaller; | ||
font-style: italic; | ||
} | ||
|
||
li .locations { | ||
font-size: smaller; | ||
color: #777; | ||
} | ||
|
||
li:hover { | ||
background-color: #eee; | ||
cursor: pointer; | ||
} | ||
|
||
.dashboard, .film_detail, .location_detail { | ||
padding-left: 10px; | ||
padding-right: 10px; | ||
} | ||
|
||
.top { | ||
width: 85%; | ||
padding: 10px; | ||
} | ||
|
||
.top input { | ||
padding: 10px; | ||
width: 100%; | ||
font-size: 16px; | ||
} | ||
|
||
.bottom_panel { | ||
background-color: #fff; | ||
border: solid 1px #ccc; | ||
width: 100%; | ||
height: 150px; | ||
z-index: 1; | ||
} | ||
|
||
.watermark { | ||
color: #666; | ||
} | ||
|
||
input[type=button] { | ||
background: #999; | ||
background-image: -webkit-linear-gradient(top, #999, #333); | ||
background-image: -moz-linear-gradient(top, #999, #333); | ||
background-image: -ms-linear-gradient(top, #999, #333); | ||
background-image: -o-linear-gradient(top, #999, #333); | ||
background-image: linear-gradient(to bottom, #999, #333); | ||
-webkit-border-radius: 8; | ||
-moz-border-radius: 8; | ||
border-radius: 8px; | ||
color: #ffffff; | ||
padding: 5px; | ||
text-decoration: none; | ||
} | ||
|
||
::-webkit-scrollbar { | ||
-webkit-appearance: none; | ||
width: 7px; | ||
} | ||
|
||
::-webkit-scrollbar-thumb { | ||
border-radius: 4px; | ||
background-color: rgba(0,0,0,.5); | ||
-webkit-box-shadow: 0 0 1px rgba(255,255,255,.5); | ||
} |