commit d16a157a4defa1d548ed4c5639c4e8663a0c0a2a
parent 2d5ea7f8c312edb403aa5c1d6627f2e8cdc4ba1e
Author: Hugo Soucy <hugo@soucy.cc>
Date: Thu, 23 Mar 2017 20:51:22 -0400
Add a abstractions css sheet.
Diffstat:
1 file changed, 18 insertions(+), 0 deletions(-)
diff --git a/static/dev/css/global/abstractions.css b/static/dev/css/global/abstractions.css
@@ -0,0 +1,18 @@
+/* ABSTRACTIONS */
+:root {
+ /* Base Vars */
+ /* Colors */
+ --base-bg-color: #f1f1f1;
+ --base-fg-color: #111111;
+ --base-link-color: #0000ff;
+ --code-bg-color: rgba(255,255,255,0.4);
+ --code-fg-color: #444444;
+ --shadow-color: #cccccc;
+
+ /* Typography */
+ --fontfamily-alpha: "Domine",Georgia,"Times New Roman",times,serif;
+ --fontfamily-beta: "Leitura News","Domine", serif;
+
+ --base-fontsize: 18px;
+ --base-fontsize-desktop: 24px;
+}