aboutsummaryrefslogtreecommitdiff
path: root/lume/src/static/css/artemis.css
diff options
context:
space:
mode:
authorXe Iaso <me@christine.website>2023-09-30 10:36:37 -0400
committerGitHub <noreply@github.com>2023-09-30 10:36:37 -0400
commitac6a3df0d18cc73524c0096d954a57d24cad5669 (patch)
tree81474177d730440657f490ae29892d62392251ea /lume/src/static/css/artemis.css
parentcbdea8ba3fca9a663778af71f8df5965aeb6c090 (diff)
downloadxesite-ac6a3df0d18cc73524c0096d954a57d24cad5669.tar.xz
xesite-ac6a3df0d18cc73524c0096d954a57d24cad5669.zip
Xesite V4 (#723)
* scripts/ditherify: fix quoting Signed-off-by: Xe Iaso <me@xeiaso.net> * clean up some old files Signed-off-by: Xe Iaso <me@xeiaso.net> * import site into lume Signed-off-by: Xe Iaso <me@xeiaso.net> * initial go code Signed-off-by: Xe Iaso <me@xeiaso.net> * move vods index to top level Signed-off-by: Xe Iaso <me@xeiaso.net> * remove the ads Signed-off-by: Xe Iaso <me@xeiaso.net> * internal/lume: metrics Signed-off-by: Xe Iaso <me@xeiaso.net> * delete old code Signed-off-by: Xe Iaso <me@xeiaso.net> * load config into memory Signed-off-by: Xe Iaso <me@xeiaso.net> * autogenerate data from dhall config Signed-off-by: Xe Iaso <me@xeiaso.net> * various cleanups, import clackset logic Signed-off-by: Xe Iaso <me@xeiaso.net> * Update signalboost.dhall (#722) Added myself, and also fixed someone’s typo * Add Connor Edwards to signal boost (#721) * add cache headers Signed-off-by: Xe Iaso <me@xeiaso.net> * move command to xesite folder Signed-off-by: Xe Iaso <me@xeiaso.net> * xesite: listen for GitHub webhook push events Signed-off-by: Xe Iaso <me@xeiaso.net> * xesite: 5 minute timeout for rebuilding the site Signed-off-by: Xe Iaso <me@xeiaso.net> * xesite: add rebuild metrics Signed-off-by: Xe Iaso <me@xeiaso.net> * xesite: update default variables Signed-off-by: Xe Iaso <me@xeiaso.net> * don't commit binaries oops lol Signed-off-by: Xe Iaso <me@xeiaso.net> * lume: make search have a light background Signed-off-by: Xe Iaso <me@xeiaso.net> * add a notfound page Signed-off-by: Xe Iaso <me@xeiaso.net> * fetch info from patreon API Signed-off-by: Xe Iaso <me@xeiaso.net> * create contact page Signed-off-by: Xe Iaso <me@xeiaso.net> * Toot embedding Signed-off-by: Xe Iaso <me@xeiaso.net> * attempt a docker image Signed-off-by: Xe Iaso <me@xeiaso.net> * lume: fix deno lock Signed-off-by: Xe Iaso <me@xeiaso.net> * add gokrazy post Signed-off-by: Xe Iaso <me@xeiaso.net> * cmd/xesite: go up before trying to connect to the saas proxy Signed-off-by: Xe Iaso <me@xeiaso.net> * blog: add Sine post/demo Signed-off-by: Xe Iaso <me@xeiaso.net> --------- Signed-off-by: Xe Iaso <me@xeiaso.net> Co-authored-by: bri <284789+b-@users.noreply.github.com> Co-authored-by: Connor Edwards <38229097+cedws@users.noreply.github.com>
Diffstat (limited to 'lume/src/static/css/artemis.css')
-rw-r--r--lume/src/static/css/artemis.css125
1 files changed, 125 insertions, 0 deletions
diff --git a/lume/src/static/css/artemis.css b/lume/src/static/css/artemis.css
new file mode 100644
index 0000000..515f5bd
--- /dev/null
+++ b/lume/src/static/css/artemis.css
@@ -0,0 +1,125 @@
+.artemis {
+ font-family: sans-serif;
+ line-height: 1.6;
+ font-size: 18px;
+ color: #fbf5ef;
+ background-color: #272744;
+ margin: 1em auto;
+ max-width: 750px;
+ padding: 0 0.55em
+}
+
+.artemis h1,h2,h3 {
+ line-height: 1.2
+}
+
+.artemis h1 {
+ margin-top: 1em;
+ margin-bottom: 0.34em
+}
+
+.artemis h2 {
+ margin-top: 1.25em;
+ margin-bottom: 0.41em
+}
+
+.artemis h3 {
+ margin-top: 1.5em;
+ margin-bottom: 0.5em
+}
+
+.artemis hr {
+ color: #494d7e;
+ background-color: #494d7e;
+ border: none;
+ height: 2px
+}
+
+.artemis a {
+ color: #f2d3ab
+}
+
+.artemis a:visited {
+ color: #f2d3ab
+}
+
+.artemis time {
+ font-weight: bold
+}
+
+.artemis table {
+ width: 100%;
+ outline: none;
+ border-spacing: 0px
+}
+
+.artemis th,td {
+ padding-left: 0.7em;
+ padding-right: 0.7em;
+ padding-top: 0.4em;
+ padding-bottom: 0.4em
+}
+
+.artemis table,th,td {
+ border: 1px solid #494d7e
+}
+
+.artemis code {
+ font-family: monospace
+}
+
+.artemis :not(pre) code {
+ background-color: #494d7e;
+ padding-left: 0.1em;
+ padding-right: 0.1em;
+ border-radius: 2px
+}
+
+.artemis img {
+ border: 0.1em solid #494d7e
+}
+
+.artemis video {
+ border: 0.1em solid #494d7e
+}
+
+.artemis img.right {
+ float: right;
+ margin-left: 1em
+}
+
+.artemis img.left {
+ float: left;
+ margin-right: 0.5em
+}
+
+.artemis img.full {
+ width: 100%;
+ height: auto
+}
+
+.artemis img.half {
+ width: 50%;
+ height: auto
+}
+
+.artemis img.emoji {
+ width: auto;
+ height: 0.75em;
+ border: none
+}
+
+.artemis pre {
+ font-family: monospace;
+ line-height: 1.45;
+ overflow-x: auto;
+ background-color: #494d7e;
+ padding: 0.2em;
+ border-radius: 2px
+}
+
+.artemis pre code {
+ font-size: 0.8em;
+ padding: 0.2em;
+ display: block
+}