mirror of
https://github.com/documize/community.git
synced 2025-07-24 15:49:44 +02:00
31 lines
477 B
SCSS
31 lines
477 B
SCSS
.toolbar {
|
|
margin: 30px 0 0 0;
|
|
|
|
> .links {
|
|
display: inlne-block;
|
|
|
|
> .link, div > .link {
|
|
color: $color-gray;
|
|
font-size: 1.1rem;
|
|
font-weight: bold;
|
|
display: inline-block;
|
|
margin-right: 30px;
|
|
cursor: pointer;
|
|
text-transform: uppercase;
|
|
@include ease-in();
|
|
// border-bottom: 2px solid $color-gray-light;
|
|
|
|
&:hover {
|
|
color: $color-link;
|
|
}
|
|
}
|
|
|
|
> .selected, div > .link {
|
|
color: $color-link;
|
|
}
|
|
}
|
|
|
|
> .buttons {
|
|
float: right;
|
|
}
|
|
}
|