0
mirror of https://github.com/valentineus/popov.link.git synced 2025-07-04 00:20:26 +03:00
Files
popov.link/_scss/components/_navigation.scss
2018-12-16 17:23:50 +04:00

37 lines
446 B
SCSS

.nav-pills {
list-style-type: none;
margin: 0;
overflow: hidden;
padding: 0;
text-align: center;
li {
float: left;
padding: .5em;
}
}
.nav-link {
text-align: center;
text-decoration: none;
text-transform: uppercase;
&:active,
&:focus,
&:hover {
border: 0;
text-decoration: none;
}
}
.nav-right {
float: right;
}
@media (max-width: 382px) {
.nav-right,
.nav-pills li {
float: none;
}
}