2022-06-17 13:39:21 +02:00
|
|
|
@text-xsmall-font-size: @global-xsmall-font-size;
|
2022-07-17 15:05:14 +02:00
|
|
|
@text-xsmall-line-height: @global-line-height;
|
|
|
|
@text-small-line-height: @global-line-height;
|
|
|
|
@text-large-line-height: @global-line-height;
|
2022-06-17 13:39:21 +02:00
|
|
|
|
2022-06-16 18:44:05 +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;
|
|
|
|
|
2022-07-17 15:05:14 +02:00
|
|
|
/* Light grey text*/
|
|
|
|
@text-light-grey: @light-grey-color;
|
|
|
|
|
2022-06-16 18:44:05 +02:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2022-07-17 15:05:14 +02:00
|
|
|
.uk-text-light-grey {
|
|
|
|
color: @text-light-grey;
|
|
|
|
}
|
|
|
|
}
|
2022-06-17 13:39:21 +02:00
|
|
|
|
2022-06-16 18:44:05 +02:00
|
|
|
|
|
|
|
|