notes/_sass/typography.scss

65 lines
772 B
SCSS
Raw Normal View History

2017-03-24 09:47:37 -04:00
//
// Typography
//
2019-05-13 16:55:22 -04:00
// stylelint-disable primer/selector-no-utility, primer/no-override, selector-no-type, selector-max-type
2017-03-24 09:47:37 -04:00
2017-03-09 13:16:08 -05:00
h1,
.text-alpha {
@include fs-8;
font-weight: 300;
}
h2,
.text-beta {
@include fs-6;
}
h3,
.text-gamma {
@include fs-5;
}
h4,
.text-delta {
@include fs-2;
2020-05-01 17:32:33 -04:00
font-weight: 400;
2017-03-09 13:16:08 -05:00
text-transform: uppercase;
letter-spacing: 0.1em;
}
h4 code {
text-transform: none;
}
2017-03-09 13:16:08 -05:00
h5,
.text-epsilon {
@include fs-3;
color: $grey-dk-200;
}
h6,
2017-03-24 09:47:37 -04:00
.text-zeta {
2017-03-09 13:16:08 -05:00
@include fs-2;
color: $grey-dk-200;
}
.text-small {
@include fs-2;
}
2017-03-24 09:47:37 -04:00
.text-mono {
2018-10-23 11:41:06 -04:00
font-family: $mono-font-family !important;
}
.text-left {
text-align: left !important;
}
2018-10-23 11:41:06 -04:00
.text-center {
text-align: center !important;
2017-03-24 09:47:37 -04:00
}
.text-right {
text-align: right !important;
}