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.

134 lines
2.8 KiB

header{
background: $green;
height: 70px;
width: 100%;
8 years ago
.logo{
position: fixed;
top: 0;
left: 0;
height: 70px;
}
.container{
&.main{
height: 70px;
position: fixed;
background: $green;
z-index: 500;
}
}
8 years ago
.hamburger{
position: fixed;
top: 6px;
right: 0;
}
.openings{
position: relative;
top: 0;
.hours{
font-size: $font-12;
text-align: left;
position: absolute;
top: 100px;
span{
display: inline;
border-right: 1px solid $grey;
padding: 0 5px;
&:first-child{
padding: 0;
}
&:first-child,
&:last-child{
border-right: none;
}
}
}
}
.topmenu{
height: calc(100vh - 70px);
position: fixed;
top: 70px;
left: 0;
background: $green;
width: 100%;
display: none;
overflow: auto;
z-index: 500;
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: 5px 15px;
display: block;
a{
color: $green;
text-decoration: none;
transition: .4s;
background: white;
display: block;
border-radius: 3px;
padding: 5px;
&:hover{
color: $light-green;
}
}
}
}
}
8 years ago
.breadcrumb {
font-size: $font-12;
padding: 5px;
margin: 0;
background-color: $light-grey;
8 years ago
border-radius: 0;
width: 100%;
position: absolute;
left: 0;
top: 70px;
color: $dark-grey;
8 years ago
height: 30px;
z-index: 1;
8 years ago
.container{
overflow: hidden;
overflow-x: auto;
8 years ago
.crumbs{
height: 20px;
display: ruby;
a{
color: $green;
8 years ago
text-decoration: none;
transition: .4s;
cursor: pointer;
8 years ago
&:hover{
color: $dark-grey;
}
}
}
}
}
}