summaryrefslogtreecommitdiff
path: root/neuarriero.css
diff options
context:
space:
mode:
authorSalvador Rivera de Franco <husband@yorkshire.fig>2026-08-12 23:56:16 -0700
committerSalvador Rivera de Franco <husband@yorkshire.fig>2026-08-12 23:56:16 -0700
commit68cb7236df749e004b98321948e21bcd171dc774 (patch)
tree6cfa6ee509869de6638c6f081eff7c9c72b309fa /neuarriero.css
parent707aed1bd1134c7769311231fbe2e29d2fa3c412 (diff)
Index has header working now. More pending work
Diffstat (limited to 'neuarriero.css')
-rw-r--r--neuarriero.css48
1 files changed, 48 insertions, 0 deletions
diff --git a/neuarriero.css b/neuarriero.css
new file mode 100644
index 0000000..41db436
--- /dev/null
+++ b/neuarriero.css
@@ -0,0 +1,48 @@
+:root {
+ --main-bg-color: #4e0408;
+ --main-fg-color: #73232d;
+
+}
+
+body {
+ margin: 0;
+ font-family:Verdana, Geneva, Tahoma, sans-serif;
+ font-weight: bold;
+
+}
+
+header {
+ display: flex;
+ background:linear-gradient(to bottom, var(--main-bg-color) 0%, var(--main-fg-color) 100%);
+ box-shadow: rgba(0,0,0,.3) 0 3px 8px;
+ padding: 0.5rem;
+ color: #ffffff;
+ align-items: stretch;
+}
+header img {
+ object-fit: cover;
+ margin-right: 1rem;
+ height: 12rex;
+}
+nav {
+ margin-top: 1rex;
+ background-color: white;
+ justify-content: flex-end;
+ flex-wrap: wrap;
+}
+nav a {
+ margin-top: 0;
+ padding: 0 1rem;
+}
+header h1 {
+ margin: 0;
+ color: white;
+}
+header h1 a {
+ font-size: 120%;
+ color: white;
+ text-decoration: none;
+}
+hr {
+ color: white;
+}