Give the CSS a major facelift

This commit is contained in:
Joshua Goins 2024-05-20 20:07:34 -04:00
parent d0d43c775d
commit 1e5651bd6e
5 changed files with 20 additions and 19 deletions

View file

@ -1,5 +1,5 @@
languageCode = "en-us" languageCode = "en-us"
title = "xiv.zone" title = "XIV ZONE"
theme = "mytheme" theme = "mytheme"
summaryLength = 30 summaryLength = 30
disableHugoGeneratorInject = true disableHugoGeneratorInject = true

View file

@ -19,7 +19,7 @@ html {
--border-color: white; --border-color: white;
overflow-y: scroll; overflow-y: scroll;
color: #2f2f2f; color: #2f2f2f;
background-color: white; background-color: #495259;
} }
hr { hr {
@ -38,14 +38,6 @@ header {
height: 100%; height: 100%;
} }
a:link {
color: var(--link-color);
}
a:visited {
color: var(--link-color-visited)
}
img { img {
max-width: 100%; max-width: 100%;
height: auto; height: auto;
@ -62,12 +54,22 @@ td {
} }
main { main {
background-color: var(--content-color); background-color: #313031;
border: var(--content-border); border: 2px solid #9b8762;
border-radius: 10px; border-radius: 10px;
border-color: var(--border-color);
margin: 2px; margin: 2px;
padding: 10px;
width: 100%; width: 100%;
box-shadow: 0px 3px 5px 2px #00000054;
color: lightgray;
}
main a:link {
color: #c6a38a;
}
main a:visited {
color: #c6a38a;
} }
main > h2 { main > h2 {
@ -99,7 +101,7 @@ footer {
} }
.blurb { .blurb {
background-color: #eaeaea; background-color: #555;
padding: 1em; padding: 1em;
border-radius: 7px; border-radius: 7px;
margin: 0.5em; margin: 0.5em;
@ -110,10 +112,11 @@ footer {
border-radius: 7px; border-radius: 7px;
margin: 0.5em; margin: 0.5em;
text-decoration: none; text-decoration: none;
color: lightgray !important;
} }
.blurb-button:hover { .blurb-button:hover {
background-color: #eaeaea; background-color: #555;
} }
.blurb-button h4, .blurb h4 { .blurb-button h4, .blurb h4 {

View file

@ -64,6 +64,4 @@ Library for reading and writing FFXIV data
</a> </a>
</div> </div>
<a href="/copyright">Copyright Notice</a>
{{ end }} {{ end }}

View file

@ -1,3 +1,3 @@
<footer> <footer>
<a href="/copyright">Copyright Notice</a>
</footer> </footer>

View file

@ -1,5 +1,5 @@
<header> <header>
<h1><a href="/">{{ .Site.Title}}</a></h1> <h1><a href="/">{{ .Site.Title }}</a></h1>
<nav id="header-links"> <nav id="header-links">
{{ range .Site.Menus.main }} {{ range .Site.Menus.main }}