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.
102 lines
2.1 KiB
102 lines
2.1 KiB
|
|
header{
|
|
background: $green;
|
|
height: 70px;
|
|
position: fixed;
|
|
width: 100%;
|
|
|
|
.logo{
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
height: 70px;
|
|
}
|
|
|
|
.hamburger{
|
|
position: fixed;
|
|
top: 6px;
|
|
right: 0;
|
|
}
|
|
|
|
|
|
.first{
|
|
position: relative;
|
|
top: 110px;
|
|
height: 70px;
|
|
}
|
|
|
|
|
|
.hours{
|
|
font-size: $font-12;
|
|
span{
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.topmenu{
|
|
height: calc(100vh - 70px);
|
|
position: fixed;
|
|
top: 70px;
|
|
left: 0;
|
|
background: $green;
|
|
width: 100%;
|
|
display: none;
|
|
overflow: auto;
|
|
|
|
ul{
|
|
text-align: center;
|
|
font-size: $font-18;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
margin: 40px 0;
|
|
padding: 0;
|
|
line-height: 30px;
|
|
|
|
|
|
li{
|
|
list-style: none;
|
|
padding: 15px;
|
|
display: block;
|
|
border-top: 1px solid $alpha;
|
|
a{
|
|
color: white;
|
|
text-decoration: none;
|
|
transition: .4s;
|
|
&:hover{
|
|
color: $alpha;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.breadcrumb {
|
|
font-size: $font-12;
|
|
padding: 5px;
|
|
margin: 0;
|
|
background-color: $light-grey;
|
|
border-radius: 0;
|
|
width: 100%;
|
|
position: absolute;
|
|
left: 0;
|
|
color: $grey;
|
|
height: 30px;
|
|
|
|
.container{
|
|
overflow: hidden;
|
|
overflow-x: auto;
|
|
.crumbs{
|
|
height: 20px;
|
|
display: ruby;
|
|
a{
|
|
color: $grey;
|
|
text-decoration: none;
|
|
transition: .4s;
|
|
&:hover{
|
|
color: $dark-grey;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|