openaire-theme/less/text.less

35 lines
782 B
Plaintext
Raw Normal View History

2022-06-17 13:39:21 +02:00
@text-xsmall-font-size: @global-xsmall-font-size;
@text-xsmall-line-height: 1.5 * @global-xsmall-font-size;
@text-small-line-height: 1.5 * @global-small-font-size;
@text-large-line-height: 1.5 * @global-large-font-size;
2022-06-17 13:39:21 +02:00
/* Meta */
@text-meta-font-size: inherit;
@text-meta-line-height: inherit;
@text-meta-color: @global-meta-color;
/* Background */
@text-background-gradient: @global-primary-gradient;
@text-background-color: @global-primary-background;
/* Light grey text*/
@text-light-grey: @light-grey-color;
.hook-text-background() {
background-image: @text-background-gradient;
}
2022-06-17 13:39:21 +02:00
.hook-text-misc() {
.uk-text-xsmall {
font-size: @text-xsmall-font-size;
line-height: @text-xsmall-line-height;
}
.uk-text-light-grey {
color: @text-light-grey;
}
}
2022-06-17 13:39:21 +02:00