summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolas <nikolas@boutalas.com>2024-11-16 18:51:15 +0000
committerNikolas <nikolas@boutalas.com>2024-11-16 18:52:29 +0000
commit49285301aca568d045fdbd3c3f9f03f9ec176843 (patch)
tree422fdc1e72a65af94edc47ec35aa2f48887b091c
parentb876019d63c5aa940add10d1bb853c9a6dac66bd (diff)
simplify css
-rw-r--r--static/neat.min.css158
-rw-r--r--static/styles.css73
-rw-r--r--templates/base.html2
-rw-r--r--templates/photos.html2
4 files changed, 75 insertions, 160 deletions
diff --git a/static/neat.min.css b/static/neat.min.css
deleted file mode 100644
index 15e21f2..0000000
--- a/static/neat.min.css
+++ /dev/null
@@ -1,158 +0,0 @@
-* {
- box-sizing: border-box;
-}
-
-:root {
- color-scheme: light dark;
- --light: #fff;
- --lesslight: #efefef;
- --dark: #404040;
- --moredark: #000;
- --link: royalblue;
- border-top: 5px solid var(--dark);
- line-height: 1.5em;
- font-family: system-ui, sans-serif;
- font-size: 16px;
- color: var(--dark);
-}
-
-h1 {
- line-height: 1em;
-}
-
-button, input {
- font-size: 1em; /* Override browser default font shrinking*/
-}
-
-input {
- border: 1px solid var(--dark);
- background-color: var(--lesslight);
- border-radius: .25em;
- padding: .5em;
-}
-
-pre {
- background-color: var(--lesslight);
- margin: 0.5em 0 0.5em 0;
- padding: 0.5em;
- overflow: auto;
-}
-
-code {
- background-color: var(--lesslight);
-}
-
-body {
- background-color: var(--light);
- margin: 0;
- max-width: 800px;
- padding: 0 20px 20px 20px;
- margin-left: auto;
- margin-right: auto;
-}
-
-a {
- outline: none;
- color: var(--dark);
-}
-
-a:hover {
- text-decoration-color: var(--link);
-}
-
-img {
- max-width: 100%;
- height: auto;
-}
-
-button, .button, input[type=submit] {
- display: inline-block;
- background-color: var(--dark);
- color: var(--light);
- text-align: center;
- padding: .5em;
- border-radius: .25em;
- text-decoration: none;
- border: none;
- cursor: pointer;
-}
-
-button:hover, .button:hover, input[type=submit]:hover {
- color: var(--lesslight);
- background-color: var(--moredark);
-}
-
-/* Add a margin between side-by-side buttons */
-button + button, .button + .button, input[type=submit] + input[type=submit] {
- margin-left: 1em;
-}
-
-.center {
- display: block;
- margin-left: auto;
- margin-right: auto;
- text-align: center;
-}
-
-.bordered {
- border: 3px solid;
-}
-
-.home {
- display: inline-block;
- background-color: var(--dark);
- color: var(--light);
- margin-top: 20px;
- padding: 5px 10px 5px 10px;
- text-decoration: none;
- font-weight: bold;
-}
-
-
-/* Desktop sizes */
-@media (min-width: 600px) {
- ol.twocol {
- column-count: 2;
- }
-
- .row {
- display: flex;
- flex-direction: row;
- padding: 0;
- width: 100%;
- }
-
- /* Make everything in a row a column */
- .row > * {
- display: block;
- flex: 1 1 auto;
- max-width: 100%;
- width: 100%;
- }
-
- .row > *:not(:last-child) {
- margin-right: 10px;
- }
-}
-
-/* Dark mode overrides (confusingly inverse) */
-@media (prefers-color-scheme: dark) {
- :root {
- --light: #222;
- --lesslight: #333;
- --dark: #eee;
- --moredark: #fefefe;
- }
- /* This fixes an odd blue then white shadow on FF in dark mode */
- *:focus {
- outline: var(--light);
- box-shadow: 0 0 0 .25em var(--link);
- }
-}
-
-/* Printing */
-@media print {
- .home {
- display: none;
- }
-} \ No newline at end of file
diff --git a/static/styles.css b/static/styles.css
new file mode 100644
index 0000000..5fa959e
--- /dev/null
+++ b/static/styles.css
@@ -0,0 +1,73 @@
+html {
+ --lesslight: #efefef;
+ --dark: #404040;
+ --moredark: #000;
+ line-height: 1.4em;
+ font-family: sans-serif;
+ font-size: 16px;
+ color: var(--dark);
+}
+
+pre {
+ background-color: var(--lesslight);
+ margin: 0.5em 0 0.5em 0;
+ padding: 0.5em;
+ overflow: auto;
+}
+
+code {
+ background-color: var(--lesslight);
+}
+
+body {
+ margin: 0;
+ max-width: 800px;
+ padding: 0 20px 20px 20px;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+a {
+ outline: none;
+ color: var(--moredark);
+}
+
+img {
+ max-width: 100%;
+ height: auto;
+ max-height: 40rem;
+}
+
+.center {
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+ text-align: center;
+}
+
+
+/* Desktop sizes */
+@media (min-width: 600px) {
+ ol.twocol {
+ column-count: 2;
+ }
+
+ .row {
+ display: flex;
+ flex-direction: row;
+ padding: 0;
+ width: 100%;
+ }
+
+ /* Make everything in a row a column */
+ .row > * {
+ display: block;
+ flex: 1 1 auto;
+ max-width: 100%;
+ width: 100%;
+ }
+
+ .row > *:not(:last-child) {
+ margin-right: 10px;
+ }
+} \ No newline at end of file
diff --git a/templates/base.html b/templates/base.html
index 764f08e..4ea65e1 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -2,7 +2,7 @@
<html lang="en">
<head>
<link rel="icon" href="favicon.svg" />
- <link rel="stylesheet" href="/neat.min.css" />
+ <link rel="stylesheet" href="/styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<title>Archive - Boutalas</title>
diff --git a/templates/photos.html b/templates/photos.html
index 8c55339..bad4589 100644
--- a/templates/photos.html
+++ b/templates/photos.html
@@ -1,7 +1,7 @@
{% extends "base.html" %} {% block body %}
<h1>{{ section.title }}</h1>
{% for page in paginator.pages %}
-<figure>
+<figure class="center">
<a {% if page.content %} href="{{ page.permalink }}" {% endif %}>
<img
alt="{{page.extra.caption}}"