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.

пре 4 година
12345678910111213141516
  1. <style>
  2. html body {
  3. font-family: '{{ .Site.Params.font }}', sans-serif;
  4. background-color: {{ .Site.Params.backgroundColor | default "white" }};
  5. }
  6. :root {
  7. --accent: {{ .Site.Params.accent | default "#2196F3" }};
  8. --border-width: {{ if .Site.Params.showBorder | default false }} 2px {{ else }} 0 {{ end }};
  9. }
  10. </style>
  11. <!-- main -->
  12. <link rel="stylesheet" href="{{ "css/main.css" | absURL }}">