470 lines
7.9 KiB
SCSS
470 lines
7.9 KiB
SCSS
//Feed width
|
|
$block-spacing: 1rem;
|
|
$feed-width: 30%;
|
|
$feed-width-max: "400px + 3 * #{$block-spacing}";
|
|
|
|
//Feed colors
|
|
$post-input-bg: #d9deff;
|
|
$post-color: #323268;
|
|
$post-bg: #B4BDFF;
|
|
$message-color: #326526;
|
|
$message-bg: #6DFF58;
|
|
$media-color: #635C28;
|
|
$media-bg: #F3EC9F;
|
|
|
|
//Legend colors
|
|
$track-main-color: #00ff78;
|
|
$track-off-track-color: #0000ff;
|
|
$track-hitchhiking-color: #FF7814;
|
|
$legend-color: #222;
|
|
|
|
#projects {
|
|
|
|
&.with-feed {
|
|
#submap {
|
|
width: calc(100% - #{$feed-width});
|
|
min-width: calc(100% - #{$feed-width-max});
|
|
}
|
|
|
|
.leaflet-right {
|
|
width: calc(#{$feed-width});
|
|
max-width: calc(#{$feed-width-max});
|
|
}
|
|
|
|
#feed {
|
|
z-index: 999;
|
|
transition: none;
|
|
}
|
|
|
|
#post-button {
|
|
.fa {
|
|
@extend .fa-next;
|
|
}
|
|
}
|
|
}
|
|
&:not(.with-feed) {
|
|
#feed #posts {
|
|
right: -100%;
|
|
}
|
|
}
|
|
|
|
#submap {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
|
|
.loader {
|
|
position: absolute;
|
|
font-size: 3em;
|
|
top: calc(50% - 0.5em);
|
|
left: calc(50% - 0.66666em);
|
|
color: #CCC;
|
|
}
|
|
}
|
|
|
|
#map {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
|
|
.track_tooltip {
|
|
p {
|
|
margin: 0;
|
|
|
|
&.name {
|
|
font-weight: bold;
|
|
font-size: 1.2em;
|
|
}
|
|
&.description {
|
|
font-style: italic;
|
|
}
|
|
&.detail {
|
|
margin-top: 1em;
|
|
width: 50%;
|
|
display: inline-block;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Leaflet patches */
|
|
.leaflet-control {
|
|
background-color: rgba(255, 255, 255, 0.6);
|
|
font-family: Roboto, Arial, sans-serif;
|
|
border-radius: 3px;
|
|
border: none;
|
|
margin: $block-spacing;
|
|
|
|
&+ .leaflet-control {
|
|
margin-top: 0;
|
|
}
|
|
|
|
&.leaflet-control-layers-expanded {
|
|
color: $legend-color;
|
|
width: calc(100% - 2em - 16px);
|
|
}
|
|
|
|
&.leaflet-control-scale {
|
|
padding: 0.5em;
|
|
|
|
.leaflet-control-scale-line {
|
|
background: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Pull right controls by $feed-width % */
|
|
.leaflet-right {
|
|
transition: all 0.5s;
|
|
width: 0;
|
|
max-width: 0;
|
|
|
|
.leaflet-control {
|
|
left: -100%;
|
|
}
|
|
}
|
|
|
|
/* Replace Layers image with font awesome icon */
|
|
.leaflet-control-layers-toggle {
|
|
@extend .control-icon;
|
|
@extend .fa-layers;
|
|
text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.8);
|
|
}
|
|
|
|
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
|
|
display: none;
|
|
}
|
|
|
|
#legend {
|
|
.line {
|
|
display: block;
|
|
border-left: 2em solid;
|
|
line-height: 4px;
|
|
padding-left: 0.5em;
|
|
margin: 1em 1em 0.5em;
|
|
font-size: 1em;
|
|
color: $legend-color;
|
|
|
|
&:first-child {
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
&.main {
|
|
border-color: $track-main-color;
|
|
}
|
|
&.off-track {
|
|
border-color: $track-off-track-color;
|
|
}
|
|
&.hitchhiking {
|
|
border-color: $track-hitchhiking-color;
|
|
}
|
|
}
|
|
}
|
|
|
|
#post-button {
|
|
cursor: pointer;
|
|
text-shadow: 0px 1px 1px rgba(0,0,0,0.8);
|
|
width: 44px;
|
|
text-align: center;
|
|
|
|
&:hover .fa {
|
|
color: white;
|
|
}
|
|
|
|
.fa {
|
|
color: #CCC;
|
|
@extend .control-icon;
|
|
@extend .fa-post;
|
|
}
|
|
}
|
|
|
|
/* Drill & Map icons */
|
|
|
|
a.drill {
|
|
position: relative;
|
|
overflow: hidden;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
|
|
.drill-icon {
|
|
position: absolute;
|
|
display: inline-block;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%,-50%);
|
|
|
|
i {
|
|
transition: all 0.3s;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
|
|
.fa-stack {
|
|
.fa-message {
|
|
font-size: 32px;
|
|
text-shadow: rgba(0, 0, 0, 0.5) 3px 3px 3px;
|
|
color: $message-bg;
|
|
}
|
|
.fa-message-in {
|
|
font-size: 13px;
|
|
color: $message-color;
|
|
top: 1px;
|
|
}
|
|
}
|
|
|
|
/* Feed Panel */
|
|
|
|
#feed {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: calc(#{$feed-width});
|
|
max-width: calc(#{$feed-width-max});
|
|
z-index: -1;
|
|
transition-property: z-index;
|
|
transition-duration: 0.1s;
|
|
transition-delay: 0.5s;
|
|
overflow: hidden;
|
|
|
|
input, textarea, button {
|
|
border: none;
|
|
padding: 0.5em 1em;
|
|
border-radius: 3px;
|
|
background-color: $post-input-bg;
|
|
color: $post-color;
|
|
}
|
|
|
|
button {
|
|
background-color: $post-color;
|
|
color: $post-bg;
|
|
|
|
&:hover {
|
|
background-color: $post-input-bg;
|
|
color: $post-color;
|
|
}
|
|
}
|
|
|
|
#posts {
|
|
position: absolute;
|
|
transition: all 0.5s;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
|
|
#poster {
|
|
textarea#post {
|
|
margin-bottom: 1em;
|
|
width: calc(100% - 2em);
|
|
}
|
|
|
|
input#name {
|
|
width: calc(100% - 6em);
|
|
}
|
|
|
|
button#submit {
|
|
margin-left: 1em;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
}
|
|
|
|
.post {
|
|
margin-bottom: $block-spacing;
|
|
background: $post-bg;
|
|
color: $post-color;
|
|
border-radius: 3px;
|
|
width: calc(100% - #{$block-spacing});
|
|
box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.5);
|
|
|
|
&:first-child {
|
|
margin-top: $block-spacing;
|
|
}
|
|
|
|
.message {
|
|
margin: 0.3em 0 0 0;
|
|
}
|
|
.signature {
|
|
margin: 0.5em 0 0 0;
|
|
text-align: right;
|
|
font-style: italic;
|
|
}
|
|
.header {
|
|
font-style: italic;
|
|
font-size: 0.8em;
|
|
padding: 0.5em 1em;
|
|
|
|
span {
|
|
display: inline-block;
|
|
width: 50%;
|
|
cursor: default;
|
|
|
|
&.index {
|
|
font-style: normal;
|
|
}
|
|
|
|
&.time {
|
|
text-align: right;
|
|
}
|
|
}
|
|
}
|
|
.body {
|
|
clear: both;
|
|
padding: 0em 1em 0.5em;
|
|
}
|
|
&.headerless {
|
|
.header {
|
|
display: none;
|
|
}
|
|
.body {
|
|
padding-top: 0.5em;
|
|
}
|
|
}
|
|
&.media {
|
|
background: $media-bg;
|
|
color: $media-color;
|
|
|
|
a {
|
|
display: inline-block;
|
|
width: 100%;
|
|
line-height: 0;
|
|
margin: 0;
|
|
|
|
&.drill {
|
|
font-size: 3em;
|
|
|
|
.fa-drill-picture {
|
|
color: transparent;
|
|
}
|
|
.fa-drill-video {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
&:hover {
|
|
.fa-drill-picture, .fa-drill-video {
|
|
color: rgba($media-bg, 0.75);
|
|
}
|
|
}
|
|
}
|
|
|
|
img {
|
|
width: 100%;
|
|
image-orientation: from-image;
|
|
outline: none;
|
|
border-radius: 3px;
|
|
}
|
|
}
|
|
}
|
|
&.message {
|
|
background: $message-bg;
|
|
color: $message-color;
|
|
|
|
p {
|
|
font-size: 0.9em;
|
|
margin: 0.5em 0;
|
|
}
|
|
|
|
a.drill {
|
|
.drill-icon {
|
|
transform: translate(-16px, -32px);
|
|
|
|
.fa-message-in {
|
|
top: 0;
|
|
left: -1px;
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
.fa-message {
|
|
@extend .#{$fa-css-prefix}-drill-message;
|
|
top: 16px;
|
|
}
|
|
.fa-message-in {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.staticmap {
|
|
width: 100%;
|
|
border-radius: 3px;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
&.loading {
|
|
.body {
|
|
text-align: center;
|
|
|
|
p {
|
|
display: inline-block;
|
|
font-size: 2em;
|
|
color: $post-color;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Info Window */
|
|
|
|
.info-window {
|
|
h1 {
|
|
font-size: 1.2em;
|
|
margin: 1em 0;
|
|
}
|
|
|
|
p {
|
|
font-size: 1.0em;
|
|
margin: 0.5em 0 0 0;
|
|
|
|
i {
|
|
padding-right: 0.5em;
|
|
}
|
|
}
|
|
|
|
.medias {
|
|
margin-top: 0.5em;
|
|
line-height: 0;
|
|
|
|
a {
|
|
display: inline-block;
|
|
margin-right: 15px;
|
|
|
|
&.drill {
|
|
font-size: 2em;
|
|
|
|
.fa-drill-picture {
|
|
color: transparent;
|
|
}
|
|
.fa-drill-video {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
&:hover {
|
|
.fa-drill-video, .fa-drill-picture {
|
|
color: rgba(255, 255, 255, 0.75);
|
|
}
|
|
}
|
|
}
|
|
|
|
img {
|
|
max-width: 200px;
|
|
max-height: 100px;
|
|
border-radius: 3px;
|
|
image-orientation: from-image;
|
|
transition: All 0.2s;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#elems {
|
|
display: none;
|
|
} |