22 lines
508 B
CSS
22 lines
508 B
CSS
{{/*
|
|
typography.css
|
|
Eryn Wells <eryn@erynwells.me>
|
|
vim: set sw=2 sts=2:
|
|
*/}}
|
|
|
|
{{- $fontSizeBase := 1 -}}
|
|
{{- $fontSizeUnit := "rem" -}}
|
|
{{- $fontSizeFactor := 1.200 -}}
|
|
|
|
{{- $scale := partial "size_scale.html" . -}}
|
|
|
|
:root {
|
|
{{- range $scale -}}
|
|
{{ $value := mul $fontSizeBase (math.Pow $fontSizeFactor .Value) }}
|
|
--font-size-{{ .Name }}: {{ printf "%.3f" $value }}{{ $fontSizeUnit }};
|
|
{{- end }}
|
|
}
|
|
|
|
{{ range $scale }}
|
|
.font-size-{{ .Name }} { font-size: var(--font-size-{{ .Name }}); }
|
|
{{- end }}
|