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.
104 lines
1.4 KiB
104 lines
1.4 KiB
body{
|
|
font-family: 'Roboto';
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
p,
|
|
label{
|
|
margin: 0;
|
|
}
|
|
|
|
a{
|
|
color: $dark-grey;
|
|
text-decoration: none;
|
|
transition: .4s;
|
|
&:hover{
|
|
color: $green;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.box{
|
|
background: $light-grey;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.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%);
|
|
}
|
|
|
|
|
|
|
|
.bg-alpha{
|
|
background: rgba(255,255,255,0.5);
|
|
}
|
|
|
|
.radius{
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.radius-bottom{
|
|
border-radius: 0 0 3px 3px;
|
|
}
|
|
|
|
.section-title{
|
|
font-size: $font-12;
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
color: white;
|
|
background: $green;
|
|
padding: 5px 10px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.section-title{
|
|
font-size: $font-12;
|
|
color: white;
|
|
background: $green;
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
border-bottom: 2px solid $green;
|
|
padding: 5px 10px;
|
|
border-radius: 3px 3px 0px 0px;
|
|
}
|
|
|
|
#MainContent{
|
|
top: 90px;
|
|
z-index: 0;
|
|
min-height: 200vh;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#map{
|
|
width: 100%;
|
|
border-radius: 3px;
|
|
overflow: hidden;
|
|
padding: 10px;
|
|
}
|