mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-13 10:49:10 -05:00
37 lines
615 B
Text
37 lines
615 B
Text
|
.info-badge,
|
||
|
.beta-badge {
|
||
|
display: block;
|
||
|
width: @line-height-computed * 0.75;
|
||
|
height: @line-height-computed * 0.75;
|
||
|
line-height: @line-height-computed * 0.75;
|
||
|
text-align: center;
|
||
|
cursor: pointer;
|
||
|
color: #fff;
|
||
|
|
||
|
&:hover,
|
||
|
&:focus {
|
||
|
color: #fff;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.info-badge {
|
||
|
background-color: @info-badge-bg;
|
||
|
border-radius: @line-height-computed * 0.75;
|
||
|
font-family: @font-family-serif;
|
||
|
font-style: italic;
|
||
|
|
||
|
&::before {
|
||
|
content: 'i';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.beta-badge {
|
||
|
background-color: @orange;
|
||
|
border-radius: @border-radius-base;
|
||
|
|
||
|
&::before {
|
||
|
content: 'β';
|
||
|
}
|
||
|
}
|