1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-10 23:50:12 +00:00
bramw_baserow/web-frontend/src/scss/base/_typography.scss
2019-02-20 22:56:59 +01:00

60 lines
830 B
SCSS

html {
font-size: 62.5%;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-weight: 400;
}
@-moz-document url-prefix() {
body {
font-weight: lighter !important;
}
}
body {
color: $color-primary-900;
font-family: $text-font-stack;
font-size: 13px;
}
a {
color: $color-primary-500;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
p {
@extend %first-last-no-margin;
color: $color-neutral-500;
line-height: 170%;
margin-bottom: 30px;
}
h1,
.heading-1 {
@extend %first-last-no-margin;
font-family: $logo-font-stack;
font-size: 33px;
margin: 30px 0;
}
h2,
.heading-2 {
@extend %first-last-no-margin;
font-size: 22px;
margin: 20px 0;
}
h3,
.heading-3 {
@extend %first-last-no-margin;
font-size: 14px;
margin: 10px 0;
}