mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
79 lines
1.2 KiB
Text
79 lines
1.2 KiB
Text
|
.labs-opt-in-wrapper {
|
||
|
color: @ol-blue-gray-3;
|
||
|
|
||
|
h1,
|
||
|
h2,
|
||
|
h3,
|
||
|
h4 {
|
||
|
color: @ol-blue-gray-3;
|
||
|
}
|
||
|
|
||
|
#experiments-container {
|
||
|
.title-row {
|
||
|
display: flex;
|
||
|
}
|
||
|
.labs-experiment-widget-container {
|
||
|
border: 1px solid @gray-lighter;
|
||
|
}
|
||
|
}
|
||
|
.labs-icon {
|
||
|
background-color: @green-50;
|
||
|
color: @white;
|
||
|
border-radius: 20%;
|
||
|
vertical-align: text-bottom;
|
||
|
}
|
||
|
p {
|
||
|
font-size: @font-size-small;
|
||
|
}
|
||
|
strong {
|
||
|
font-size: @font-size-small;
|
||
|
}
|
||
|
|
||
|
.labs-experiment-widget-container {
|
||
|
display: grid;
|
||
|
grid-template-columns: 40px 1fr auto;
|
||
|
gap: 20px;
|
||
|
align-items: center;
|
||
|
padding: 10px;
|
||
|
|
||
|
> div {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
padding-right: 20px;
|
||
|
|
||
|
&:last-child {
|
||
|
padding-right: 0px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
width: 36px;
|
||
|
height: 36px;
|
||
|
}
|
||
|
|
||
|
.title-row {
|
||
|
margin: 0;
|
||
|
margin-bottom: 10px;
|
||
|
|
||
|
> h3 {
|
||
|
margin: 0;
|
||
|
margin-right: 10px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
margin-bottom: 10px;
|
||
|
|
||
|
&:last-child {
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (max-width: @screen-xs-max) {
|
||
|
.labs-experiment-widget-container {
|
||
|
grid-template-columns: 1fr;
|
||
|
}
|
||
|
}
|
||
|
}
|