diff options
author | cyfraeviolae <cyfraeviolae> | 2022-03-20 14:44:06 -0400 |
---|---|---|
committer | cyfraeviolae <cyfraeviolae> | 2022-03-20 14:44:06 -0400 |
commit | 8ee233cda72a5d25624531864015730452624e27 (patch) | |
tree | d79f30c80bff73a6414c7f0fd392c1ccec4ec590 | |
parent | 02c56d44b419929237dcf5d0aef505d53a11fc0b (diff) |
styles telechromy
-rw-r--r-- | cyfraeviolae.conf | 4 | ||||
-rw-r--r-- | local.conf | 4 | ||||
-rw-r--r-- | static/styles.css | 20 |
3 files changed, 26 insertions, 2 deletions
diff --git a/cyfraeviolae.conf b/cyfraeviolae.conf index e89673e..e412e52 100644 --- a/cyfraeviolae.conf +++ b/cyfraeviolae.conf @@ -1,6 +1,10 @@ server { server_name cyfraeviolae.org; + location /telechromy { + alias /srv/telechromy/; + } + location /prosodyle { alias /srv/prosodyle/; } @@ -10,6 +10,10 @@ http { server { access_log /home/sy/code/logs/access.log; + location /telechromy { + alias /home/sy/code/site/telechromy/; + } + location /prosodyle { alias /home/sy/code/site/prosodyle/; } diff --git a/static/styles.css b/static/styles.css index d6e84e2..9126d87 100644 --- a/static/styles.css +++ b/static/styles.css @@ -36,19 +36,35 @@ body { font-size: 16px; text-align: center; line-height: 1.2; + margin-left: 0; + margin-right: 0; } .container { + background: #fffaef; text-align: left; - margin: 1em; + padding: 1em; + padding-bottom: 1.4em; min-width: 40%; + box-shadow: 0px 4px 0px rgba(0, 0, 0, .5); +} + +.center-container { + text-align: center; + width: 80%; + max-width: 500px; + margin: 0 auto; +} + +.center-container .crumbs { + padding-left: 0; } @media only screen and (min-width: 700px) { .container { border: 1px DarkSlateGrey dotted; border-radius: 4px; - box-shadow: 4px 4px 0px DarkSlateGrey; + box-shadow: 4px 4px 0px rgba(0, 0, 0, .5); padding: 2em; max-width: 40em; margin: 0 auto; |