mirror of
https://gitlab.com/fabinfra/fabinfra-theme.git
synced 2025-03-12 22:51:49 +01:00
31 lines
1.2 KiB
HTML
31 lines
1.2 KiB
HTML
<style>
|
|
|
|
html body {
|
|
font-family: '{{ .Site.Params.font }}', sans-serif;
|
|
background-color: {{ .Site.Params.backgroundColor | default "white" }};
|
|
}
|
|
|
|
:root {
|
|
--accent: {{ .Site.Params.accent | default "#2196F3" }};
|
|
--border-width: {{ if .Site.Params.showBorder | default false }} 5px {{ else }} 0 {{ end }};
|
|
}
|
|
|
|
</style>
|
|
|
|
<!-- google fonts -->
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family={{ .Site.Params.font }}">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=VT323">
|
|
|
|
<!-- bootstrap -->
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
|
|
|
<!-- font awesome -->
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.0/css/all.css" integrity="sha384-Mmxa0mLqhmOeaE8vgOSbKacftZcsNYDjQzuCOm6D02luYSzBG8vpaOykv9lFQ51Y" crossorigin="anonymous">
|
|
|
|
<!-- main -->
|
|
<link rel="stylesheet" href="{{ "css/main.css" | absURL }}">
|
|
|
|
<!-- custom -->
|
|
{{ range .Site.Params.css }} <link rel="stylesheet" href="{{ . | absURL }}"> {{ end }}
|
|
|