diff options
| author | Salvador Rivera de Franco <husband@yorkshire.fig> | 2026-08-14 05:52:23 -0700 |
|---|---|---|
| committer | Salvador Rivera de Franco <husband@yorkshire.fig> | 2026-08-14 05:52:23 -0700 |
| commit | 9e00b7af6cf4268e30898d53ab93aacd4ffa2222 (patch) | |
| tree | 8385c1424a7f3e323bf69ca6e25d19f83c3a2854 /neuarriero.css | |
| parent | 691235c38dba206d79b39506701a1c34b74a00c1 (diff) | |
More progress
Diffstat (limited to 'neuarriero.css')
| -rw-r--r-- | neuarriero.css | 41 |
1 files changed, 35 insertions, 6 deletions
diff --git a/neuarriero.css b/neuarriero.css index 4726319..ffee6e7 100644 --- a/neuarriero.css +++ b/neuarriero.css @@ -5,12 +5,8 @@ } 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%); @@ -30,8 +26,8 @@ nav { flex-direction: row; align-items: center; font-size: 80%; + background-color: whitesmoke; } - nav a { margin: 0 2rex; display: flex; @@ -50,6 +46,26 @@ header h1 a { color: white; text-decoration: none; } + +.contentheader { + display: flex; + align-items: center; + background: var(--main-fg-color); + margin-top: 1rem; + max-height: 8rex; + color: white; + padding: 0.5rex 0.5rex 0 0.5rex; +} +.contentheader img { + max-height: inherit; + margin-right: 2.5rex; +} + +.content { + display: flex; + margin-left: auto; +} + hr { padding: 0; margin: 0; @@ -57,5 +73,18 @@ hr { } main { - padding-left: 1%; + margin: 0 0 0 2.5rem; +} +.fig { + position: fixed; + bottom: 0%; + right: -2%; + opacity: 0.15; + transition: opacity 0.25s ease-in; + z-index: -1; + width: 25%; } +.fig:hover { + z-index: 5; + opacity: 1; +}
\ No newline at end of file |
