2022-11-11 12:55:07 +01:00
|
|
|
@text-large-font-size-medium-max: @global-large-font-size - 2px;
|
2022-06-17 13:39:21 +02:00
|
|
|
@text-xsmall-font-size: @global-xsmall-font-size;
|
2022-07-18 23:47:49 +02:00
|
|
|
@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
|
|
|
|
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*/
|
2023-01-27 13:43:04 +01:00
|
|
|
@text-light-grey: @placeholder-color;
|
2022-07-17 15:05:14 +02:00
|
|
|
|
2022-08-03 19:45:44 +02:00
|
|
|
/* Bold */
|
|
|
|
@text-bold-weight: 600;
|
|
|
|
|
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() {
|
2022-08-03 19:45:44 +02:00
|
|
|
.uk-text-bold {
|
|
|
|
font-weight: @text-bold-weight;
|
|
|
|
}
|
|
|
|
|
2022-06-17 13:39:21 +02:00
|
|
|
.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;
|
|
|
|
}
|
2023-02-15 17:28:56 +01:00
|
|
|
|
|
|
|
.uk-text-transform-none {
|
|
|
|
text-transform: none !important;
|
|
|
|
}
|
2022-07-17 15:05:14 +02:00
|
|
|
}
|
2022-06-17 13:39:21 +02:00
|
|
|
|
2022-11-11 12:55:07 +01:00
|
|
|
@media only screen and (max-width: @breakpoint-medium-max) {
|
|
|
|
.uk-text-large {
|
|
|
|
font-size: @text-large-font-size-medium-max !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-16 18:44:05 +02:00
|
|
|
|
|
|
|
|