67 lines
991 B
CSS
67 lines
991 B
CSS
@import './mixins';
|
|
|
|
#app {
|
|
> .container {
|
|
@include .container($content-max-width, $global-gutter);
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
> header {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
> h1 {
|
|
> a {
|
|
color: black;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
nav {
|
|
> button {
|
|
display: none;
|
|
}
|
|
|
|
> ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
display: flex;
|
|
|
|
> li {
|
|
display: block;
|
|
margin: 5px;
|
|
|
|
&:first-child {
|
|
margin-left: 0px;
|
|
}
|
|
|
|
&:last-child {
|
|
margin-right: 0px;
|
|
}
|
|
|
|
> a {
|
|
cursor: pointer;
|
|
display: block;
|
|
font-weight: bold;
|
|
border: 5px solid black;
|
|
padding: $button-padding;
|
|
color: black;
|
|
text-decoration: none;
|
|
transition: all 0.5s;
|
|
|
|
&:hover {
|
|
background: black;
|
|
color:white;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|