mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-17 08:05:19 +00:00
28 lines
553 B
Plaintext
28 lines
553 B
Plaintext
.Toolbar {
|
|
.Toolbar-Title {
|
|
padding: 0px 20px;
|
|
margin: 0;
|
|
font-size: 20px;
|
|
font-weight: 200;
|
|
text-align: center;
|
|
line-height: 50px;
|
|
opacity: 0;
|
|
.transition(~"opacity ease .2s");
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
color: @button-hover-color;
|
|
|
|
a, a:hover {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
.Toolbar-Title {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|