32 lines
473 B
SCSS
32 lines
473 B
SCSS
.top-nav {
|
|
& {
|
|
border-bottom: solid 1px $dark-line-color;
|
|
height: 48px;
|
|
line-height: 48px;
|
|
text-align: center;
|
|
}
|
|
|
|
& > .brand {
|
|
@include font-size(-1);
|
|
display: block;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
text-decoration: none;
|
|
|
|
&,
|
|
&:visited {
|
|
color: $base-text;
|
|
}
|
|
|
|
&:hover {
|
|
color: $base-a;
|
|
}
|
|
}
|
|
|
|
& > .actions > .social {
|
|
// TODO
|
|
display: none;
|
|
}
|
|
}
|