37 lines
446 B
SCSS
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;
|
|
}
|
|
}
|