Revert "Updated a lot of stuff"

This reverts commit 915febb352.

Made on behalf of @ComputerTech312
This commit is contained in:
Julian Marcos
2024-10-14 16:23:04 +02:00
parent 875fd9a6b2
commit 58884e119d
16 changed files with 887 additions and 255 deletions

View File

@@ -1,36 +1,26 @@
/* Global Styles */
html, body {
margin: 0;
padding: 0;
height: 100%; /* Ensure the body and HTML cover the full height */
}
body {
display: flex;
flex-direction: column;
min-height: 100vh; /* Full viewport height */
background-color: #ffffff;
color: #000000;
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
transition: background-color 0.3s, color 0.3s;
}
/* Wrapper for header and content */
.wrapper {
flex: 1; /* Takes up remaining space between header and footer */
/* Links */
a {
color: #c08000;
text-decoration: none;
transition: color 0.3s;
}
/* Footer */
footer {
font-family: Arial, Helvetica, sans-serif;
font-size: 0.8em; /* Smaller font size for a neat appearance */
background-color: #c08000; /* Footer background color */
padding: 3px 0; /* Minimal padding to make it skinny */
text-align: center;
color: #000000;
border-top: 1px solid #a06500; /* Optional subtle top border */
position: relative;
bottom: 0;
width: 100%;
a:visited, a:link, a:hover {
color: #c08000;
}
a:hover {
text-decoration: underline;
}
/* Table and Layout */
@@ -132,6 +122,16 @@ td.quote-box {
margin-bottom: 10px;
}
/* Footer */
footer {
font-family: Arial, Helvetica, sans-serif;
font-size: smaller;
background-color: #c08000;
padding: 10px;
text-align: center;
color: #000000;
}
/* Pagination */
#pagination {
text-align: center;
@@ -297,34 +297,4 @@ td.quote-box {
}
}
/* Header Styles */
.header-table {
background-color: #c08000; /* The orange color block for the header */
width: 100%;
padding: 10px 0;
}
.header-left {
text-align: left;
font-size: 1.2em;
}
.header-right {
text-align: right;
font-size: 1.2em;
}
.nav-table {
background-color: #f0f0f0; /* A lighter background for the navigation section */
padding: 5px 0;
}
.toplinks a {
color: #c08000;
margin: 0 5px;
text-decoration: none;
}
.toplinks a:hover {
text-decoration: underline;
}