Files
popov.link/_scss/components/_navigation.scss
T

37 lines
446 B
SCSS
Raw Normal View History

2018-12-06 23:52:27 +04:00
.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;
2018-12-06 23:52:27 +04:00
2018-12-07 01:07:26 +04:00
&:active,
2018-12-06 23:52:27 +04:00
&:focus,
&:hover {
border: 0;
text-decoration: none;
2018-12-06 23:52:27 +04:00
}
}
.nav-right {
float: right;
}
@media (max-width: 382px) {
.nav-right,
.nav-pills li {
float: none;
}
}