29 lines
854 B
Plaintext
29 lines
854 B
Plaintext
|
|
// Simplified color-contrast function to replicate bootstrap in report preview.
|
|
@function preview-color-contrast($background) {
|
|
@if (lightness($background) > 50) {
|
|
@return black;
|
|
} @else {
|
|
@return white;
|
|
}
|
|
}
|
|
|
|
.o_company_1_layout {
|
|
font-family: Lato;
|
|
|
|
h2 {
|
|
color: #212529;
|
|
}
|
|
|
|
#informations strong {
|
|
color: #212529;
|
|
}
|
|
|
|
.o_total strong {
|
|
color: #212529;
|
|
}
|
|
|
|
.o_company_tagline {
|
|
color: #212529
|
|
}
|
|
} |