mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
c8521820fa
Enforce Beta & Info Badges Font Size GitOrigin-RevId: 679e5c0ee90f541be003891e85074212961f1571
46 lines
802 B
Text
46 lines
802 B
Text
.info-badge,
|
|
.beta-badge {
|
|
display: inline-block;
|
|
width: @line-height-computed * 0.75;
|
|
height: @line-height-computed * 0.75;
|
|
line-height: @font-size-small;
|
|
font-size: @line-height-computed * 0.75;
|
|
text-align: center;
|
|
color: #fff;
|
|
|
|
&::before {
|
|
line-height: @font-size-small;
|
|
font-size: @font-size-small;
|
|
}
|
|
|
|
&: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';
|
|
}
|
|
}
|
|
|
|
.info-badge-fade-bg {
|
|
.info-badge;
|
|
background-color: rgba(0, 0, 0, 0.25);
|
|
}
|
|
|
|
.beta-badge {
|
|
background-color: @orange;
|
|
border-radius: @border-radius-base;
|
|
|
|
&::before {
|
|
content: 'β';
|
|
}
|
|
}
|