fake-log/public/stylesheets/_nav.scss

71 lines
1 KiB
SCSS
Raw Normal View History

main.mainContainer {
padding-left: 22rem;
}
nav#menuGlowne {
2018-08-22 14:12:01 +02:00
margin-top: 10rem;
width: 20rem;
float: left;
border: 1px solid #d32f2f;
ul {
list-style: none;
margin: 0;
padding: 0;
}
a {
display: block;
padding: 5px 10px;
background: #d32f2f;
border-bottom: 1px #ff7972;
color: #fff;
text-decoration: none;
&:hover {
background: #ff7972;
}
}
}
2017-12-17 22:12:20 +01:00
.navigation {
display: flex;
justify-content: space-between;
2018-09-11 17:34:48 +02:00
@at-root .button,
2017-12-17 22:12:20 +01:00
a[class^="button"] {
background: #8B0000;
padding: 0.5rem 1.5rem;
2018-09-11 17:34:48 +02:00
display: inline-block;
2017-12-17 22:12:20 +01:00
margin: 1rem 0;
color: #fff;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
.button-prev:before {
content: "<";
margin-right: 0.5rem;
}
.button-next:after {
content: ">";
margin-left: 0.5rem;
}
}
2018-04-21 19:00:32 +02:00
#idSection {
2018-08-22 14:12:01 +02:00
margin-left: 20rem;
margin-top: 10rem;
2018-04-21 19:00:32 +02:00
list-style: none;
display: flex;
background: #cccccc;
padding: 10px;
li {
width: 50%;
}
}