forked from cms/tibi-svelte-starter
47 lines
432 B
Plaintext
47 lines
432 B
Plaintext
a {
|
|
color: @on-background;
|
|
text-decoration: none;
|
|
transition: @transition-default;
|
|
|
|
&:hover {
|
|
color: @primary;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: @primary;
|
|
}
|
|
|
|
h1,
|
|
.h1,
|
|
h2,
|
|
.h2,
|
|
h3,
|
|
.h3,
|
|
h4,
|
|
.h4,
|
|
h5,
|
|
.h5,
|
|
h6,
|
|
.h6 {
|
|
color: @primary;
|
|
font-weight: 700;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
h1,
|
|
.h1 {
|
|
font-size: 32px;
|
|
}
|
|
|
|
h2,
|
|
.h2 {
|
|
font-size: 24px;
|
|
}
|
|
|
|
h3,
|
|
.h3 {
|
|
font-size: 24px;
|
|
}
|