spee.ch/client/scss/_text.scss

68 lines
781 B
SCSS
Raw Normal View History

2018-06-05 23:24:54 +02:00
// set defaults
2018-06-08 17:50:25 +02:00
h1, h2, h3, h4, p {
margin: 0;
}
2018-06-05 23:24:54 +02:00
h1 {
2018-06-09 02:23:11 +02:00
font-size: 2.5em;
2018-05-31 00:00:09 +02:00
}
2018-06-05 23:24:54 +02:00
h2 {
2018-06-09 02:23:11 +02:00
font-size: xx-large;
2018-05-31 00:00:09 +02:00
}
2018-06-05 23:24:54 +02:00
h3 {
2018-06-09 02:23:11 +02:00
font-size: x-large;
2018-06-05 23:24:54 +02:00
font-weight: bold;
2018-05-31 00:00:09 +02:00
}
2018-06-08 17:50:25 +02:00
p, body, button, input, textarea, label, select, option {
2018-06-05 23:24:54 +02:00
font-family: 'Lekton', monospace;
font-size: large;
2018-05-31 00:00:09 +02:00
}
2018-06-09 02:23:11 +02:00
.text--extra-large {
font-size: 2.5em;
}
.text--large {
font-size: x-large;
}
.text--small {
font-size: medium;
}
2018-06-05 23:24:54 +02:00
2018-06-09 02:23:11 +02:00
.text--extra-small {
font-size: small;
}
.text--underline {
text-decoration: underline;
}
.text--primary {
color: $primary-color;
}
.text--secondary {
color: $secondary-color;
}
.text--tertiary {
color: $tertiary-color;
}
.text--interactive {
color: $interactive-color;
}
.text--failure {
color: $failure-color;
}
.text--success {
color: $success-color;
}