/* * @author Wolfgang Kowarschick * @copyright 2016-2022 * @license MIT */ @use 'sass:math'; $background-color: #C5EFFC; $font-family-sans: Verdana, Helvetica, sans-serif; $font-family-serif: "Times New Roman", Times, serif; $font-size-base: 3vw; $font-size-factor: 1.25; // cmp. https://type-scale.com/ $font-size-h5: math.pow($font-size-factor,1)*$font-size-base; $font-size-h4: math.pow($font-size-factor,2)*$font-size-base; $font-size-h3: math.pow($font-size-factor,3)*$font-size-base; $font-size-h2: math.pow($font-size-factor,4)*$font-size-base; $font-size-h1: math.pow($font-size-factor,5)*$font-size-base; $font-size-p: math.pow($font-size-factor,0)*$font-size-base; $font-size-p-large: math.pow($font-size-factor,2)*$font-size-base; $font-size-small: math.pow($font-size-factor,-1)*$font-size-base;