56 lines
848 B
Sass
56 lines
848 B
Sass
/* Box sizing rules */
|
|
*,*::before,*::after
|
|
box-sizing: border-box
|
|
|
|
html
|
|
/*-webkit-font-smoothing: antialiased*/
|
|
/*--moz-osx-font-smoothing: grayscale*/
|
|
scroll-behavior: smooth
|
|
/* 18px */
|
|
font-size: $font-size
|
|
|
|
body
|
|
font-weight: 400
|
|
line-height: 1.65
|
|
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"
|
|
color: $color-primary
|
|
background-color: $color-secondary
|
|
|
|
p
|
|
margin-bottom: 1.15rem
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5
|
|
margin: 2.75rem 0 1.05rem
|
|
font-weight: 400
|
|
line-height: 1.15
|
|
|
|
h4,
|
|
h5
|
|
margin: 1.375rem 0 0.75rem
|
|
font-weight: 400
|
|
line-height: 1.15
|
|
|
|
h1
|
|
margin-top: 0
|
|
font-size: 4rem
|
|
|
|
h2
|
|
font-size: 3rem
|
|
|
|
h3
|
|
font-size: 3rem
|
|
|
|
h4
|
|
font-size: 2.5rem
|
|
|
|
h5
|
|
font-size: 2rem
|
|
|
|
small,
|
|
.text_small
|
|
font-size: 0.889em
|