diff options
author | Colin Okay <colin@cicadas.surf> | 2022-10-28 16:05:57 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-10-28 16:05:57 -0500 |
commit | c4363a63dbfee6ca4fbc7e35cc5a2b5329f7383f (patch) | |
tree | 9bb89cf2aefb847ca94d25822da50f9425a2a0ce | |
parent | 6d2f5539a5d401856e13c87f34daf4f951cc7c6e (diff) |
Add: style
-rw-r--r-- | style.lisp | 8 | ||||
-rw-r--r-- | vampire.asd | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/style.lisp b/style.lisp new file mode 100644 index 0000000..68d754d --- /dev/null +++ b/style.lisp @@ -0,0 +1,8 @@ +;;;; css.lisp + +(in-package :vampire) + +(defun include-style (body) + ;(load-css (html-document body) "https://www.w3schools.com/w3css/4/w3.css") + ;(load-css (html-document body) "https://www.w3schools.com/lib/w3-theme-indigo.css") + ) diff --git a/vampire.asd b/vampire.asd index 7ffa473..4830ce2 100644 --- a/vampire.asd +++ b/vampire.asd @@ -20,6 +20,7 @@ (:file "downloader") (:file "model") (:file "session") + (:file "style") (:file "navigation") (:file "new-account") (:file "explore") |