You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
128 lines
1.9 KiB
128 lines
1.9 KiB
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900');
|
|
|
|
body{
|
|
font-family: 'Montserrat';
|
|
/* letter-spacing: 1px; */
|
|
font-weight: 600;
|
|
}
|
|
|
|
p,
|
|
label{
|
|
margin: 0;
|
|
}
|
|
|
|
a{
|
|
color: white;
|
|
text-decoration: none;
|
|
transition: .4s;
|
|
outline: none;
|
|
&:active,
|
|
&:visited,
|
|
&:hover,
|
|
&:focus{
|
|
outline: none;
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
&:hover{
|
|
color: $grey;
|
|
}
|
|
}
|
|
|
|
|
|
.container{
|
|
width: 100%;
|
|
/* max-width: 1366px; */
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.border{
|
|
border: 1px solid red;
|
|
}
|
|
|
|
|
|
.middle{
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
.middle-right{
|
|
position: absolute;
|
|
right: 0;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
.full-middle{
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
|
|
.pattern{
|
|
background: white;
|
|
background-image: url(../images/pattern.jpg);
|
|
background-repeat: repeat-x;
|
|
background-position: center bottom;
|
|
}
|
|
|
|
.radius{
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.radius-bottom{
|
|
border-radius: 0 0 3px 3px;
|
|
}
|
|
|
|
|
|
#MainContent{
|
|
top: 50px;
|
|
z-index: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#map{
|
|
width: 100%;
|
|
border-radius: 3px;
|
|
overflow: hidden;
|
|
padding: 10px;
|
|
}
|
|
|
|
|
|
|
|
|
|
#dropLoading{
|
|
display: none;
|
|
position: fixed;
|
|
left: 0;
|
|
top: 50px;
|
|
height: calc(100vh - 50px);
|
|
width: 100%;
|
|
background: rgba(0,0,0,0.8);
|
|
overflow: hidden;
|
|
#animation_container{
|
|
position: absolute;
|
|
height: 300px;
|
|
width: 300px;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
|
|
}
|
|
#countdown{
|
|
position: fixed;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
width: 50px;
|
|
z-index: 9999;
|
|
top: calc(50% + 30px);
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
text-align: center;
|
|
font-size: $font-18;
|
|
color: white;
|
|
}
|
|
}
|