stack-trace-mapper/src/styles/layout.css
2019-02-13 21:26:28 +01:00

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;
}
}
}
}
}