background-attachment: fixed; | background-attachment: fixed; | ||||
background-size: 2000px 2000px; | background-size: 2000px 2000px; | ||||
} | } | ||||
<repeat group="{{ @customVars }}" key="{{ @ikey }}" value="{{ @ivalue }}"> | |||||
:root { | |||||
--{{ @ikey }}: {{ $@ikey }}; | |||||
} | |||||
</repeat> |
;; "customVars" are global (in F3) and can be changed in content files | ;; "customVars" are global (in F3) and can be changed in content files | ||||
[customVars] | [customVars] | ||||
backgroundColor=#fff | backgroundColor=#fff | ||||
info1=test | |||||
color1=#333 | |||||
color2=#777 | |||||
color3=#bbb | |||||
[globals] | [globals] | ||||
title=Title of new Page | title=Title of new Page |
$black:#000; | $black:#000; | ||||
$gray:#777; | $gray:#777; | ||||
:root { | |||||
--color1: red; | |||||
--color2: green; | |||||
--color3: blue; | |||||
} | |||||
html { | html { | ||||
color:$gray; | color:$gray; |