-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
204 additions
and
206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,202 @@ | ||
#map { | ||
height: 100%; | ||
} | ||
html, body { | ||
height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
#twitts_count { | ||
background-color: #fff; | ||
color: rgb(25, 25, 25); | ||
font-size: 'Roboto,Arial,sans-serif'; | ||
font-size: 16px; | ||
margin-bottom: 20px; | ||
padding-left: 5px; | ||
padding-right: 5px; | ||
box-shadow: 0 0 6px rgba(0, 0, 0, 0.3); | ||
border-radius: 2px; | ||
border: 1px solid #e6e6e6; | ||
} | ||
|
||
#reset-btn { | ||
position: absolute; | ||
margin: auto; | ||
display: inline-block; | ||
left: 48% | ||
} | ||
.mid-control { | ||
text-align: center; | ||
top: 20px; | ||
z-index: 1; | ||
position: relative; | ||
} | ||
|
||
#searchbox { | ||
background-color: #fff; | ||
font-size: 14px; | ||
font-weight: 300; | ||
|
||
padding: 3px 13px 3px 13px; | ||
text-overflow: ellipsis; | ||
width: 335px; | ||
margin-top: 20px; | ||
position: relative; | ||
z-index: 1; | ||
box-shadow: 0 0 6px rgba(0, 0, 0, 0.3); | ||
|
||
-webkit-border-radius: 2px; | ||
-moz-border-radius: 2px; | ||
border-radius: 2px; | ||
border: 1px solid #e6e6e6; | ||
} | ||
#searchbox:focus { | ||
border-color: #4d90fe; | ||
} | ||
|
||
#distance-options { | ||
-webkit-box-shadow: 0 0 6px rgba(0,0,0,0.298039); | ||
-moz-box-shadow: 0 0 6px rgba(0,0,0,0.298039); | ||
box-shadow: 0 0 6px rgba(0,0,0,0.298039); | ||
-webkit-border-radius: 2px; | ||
-moz-border-radius: 2px; | ||
border-radius: 2px; | ||
border: 1px solid #e6e6e6; | ||
background: #fff; | ||
color: #666; | ||
position: relative; | ||
padding: 10px 10px 1px 10px; | ||
|
||
margin-top: 5px; | ||
width: auto; | ||
z-index: 1; | ||
} | ||
|
||
#distance-options label { | ||
font-weight: 500; | ||
} | ||
#distance-options #units { | ||
padding-left: 18px; | ||
display: inline-block; | ||
} | ||
|
||
#distance-options #locate-control { | ||
text-align: center; | ||
margin: 7px; | ||
position: relative; | ||
} | ||
#locate-control input { | ||
margin-left: 15px; | ||
} | ||
|
||
|
||
#distance-options #radius-input { | ||
width: 100px; | ||
padding: 3px; | ||
position: relative; | ||
} | ||
|
||
#distance-options input { | ||
-webkit-border-radius: 2px; | ||
-moz-border-radius: 2px; | ||
border-radius: 2px; | ||
border: 1px solid #e6e6e6; | ||
} | ||
|
||
#distance-options #unit-selector { | ||
font-family: Roboto,Arial,sans-serif; | ||
position: relative; | ||
|
||
} | ||
#unit-selector label { | ||
margin: 3px; | ||
} | ||
|
||
select, input[type="color" i][list] { | ||
background-color: rgb(248, 248, 248); | ||
border-width: 1px; | ||
border-style: solid; | ||
border-color: rgb(166, 166, 166); | ||
} | ||
#control-block { | ||
position: absolute; | ||
margin-left: 12px; | ||
} | ||
#user-name { | ||
margin-top: 10px; | ||
font-weight: bold; | ||
font-size: 15px; | ||
} | ||
#user-name a:hover { | ||
text-decoration: underline; | ||
color: #01579b; | ||
} | ||
#post-time { | ||
font-size: 12px; | ||
} | ||
.panel-default { | ||
width: 200px; | ||
} | ||
|
||
@-webkit-keyframes ld { | ||
0% { transform: rotate(0deg) scale(1); } | ||
50% { transform: rotate(180deg) scale(1.1); } | ||
100% { transform: rotate(360deg) scale(1); } | ||
} | ||
@-moz-keyframes ld { | ||
0% { transform: rotate(0deg) scale(1); } | ||
50% { transform: rotate(180deg) scale(1.1); } | ||
100% { transform: rotate(360deg) scale(1); } | ||
} | ||
@-o-keyframes ld { | ||
0% { transform: rotate(0deg) scale(1); } | ||
50% { transform: rotate(180deg) scale(1.1); } | ||
100% { transform: rotate(360deg) scale(1); } | ||
} | ||
@keyframes ld { | ||
0% { transform: rotate(0deg) scale(1); } | ||
50% { transform: rotate(180deg) scale(1.1); } | ||
100% { transform: rotate(360deg) scale(1); } | ||
} | ||
|
||
.m-progress { | ||
position: relative; | ||
opacity: .8; | ||
color: transparent !important; | ||
text-shadow: none !important; | ||
} | ||
.m-progress:hover, | ||
.m-progress:active, | ||
.m-progress:focus { | ||
cursor: default; | ||
color: transparent; | ||
outline: none !important; | ||
box-shadow: none; | ||
} | ||
.m-progress:before { | ||
content: ''; | ||
|
||
display: inline-block; | ||
|
||
position: absolute; | ||
background: transparent; | ||
border: 1px solid #fff; | ||
border-top-color: transparent; | ||
border-bottom-color: transparent; | ||
border-radius: 50%; | ||
|
||
box-sizing: border-box; | ||
|
||
top: 50%; | ||
left: 50%; | ||
margin-top: -12px; | ||
margin-left: -12px; | ||
|
||
width: 24px; | ||
height: 24px; | ||
|
||
-webkit-animation: ld 1s ease-in-out infinite; | ||
-moz-animation: ld 1s ease-in-out infinite; | ||
-o-animation: ld 1s ease-in-out infinite; | ||
animation: ld 1s ease-in-out infinite; | ||
} |
Oops, something went wrong.