You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.3 KiB
31 lines
1.3 KiB
<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> |
|
|
|
<!-- main --> |
|
<link rel="stylesheet" href="{{ "css/main.css" | absURL }}"> |
|
|
|
<!-- custom --> |
|
{{ range .Site.Params.css }} <link rel="stylesheet" href="{{ . | absURL }}"> {{ end }} |
|
|
|
<!-- google fonts --> |
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family={{ .Site.Params.font }}"> |
|
|
|
<!-- highlight.js --> |
|
{{ if .Site.Params.highlight | default false }} <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/{{ .Site.Params.highlightStyle | default "default" }}.min.css"> {{ end }} |
|
|
|
<!-- 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://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
|
|
|