updates
This commit is contained in:
2025-12-17 11:11:44 -07:00
parent 6be4fc4e4d
commit 0ec4c05f93

View File

@@ -1,12 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Patronage OS</title> <title>Patronage OS</title>
<style> <style>
:root {
--primary-color: #333; /* dark gray */
--secondary-color: #4CAF50; /* green */
--accent-color: #ffeb3b; /* orange */
--text-color: #666; /* medium gray */
--background-color: #DCDCDC; /* light grey */
}
html, body { html, body {
height: 100%; height: 100%;
background-color: var(--background-color);
} }
html { html {
display: table; display: table;
@@ -15,8 +22,9 @@
body { body {
display: table-cell; display: table-cell;
vertical-align: middle; vertical-align: middle;
font-family: Arial, sans-serif; font-family: 'Helvetica Neue', Arial, sans-serif; /* Replace with your preferred system font */
text-align: center; text-align: center;
color: var(--text-color);
} }
footer { footer {
position: absolute; position: absolute;
@@ -31,12 +39,12 @@
} }
h1 { h1 {
font-size: 3em; font-size: 3em;
color: #333; color: var(--primary-color);
} }
h2 { h2 {
font-size: 1.5em; font-size: 1.5em;
padding: 1rem; padding: 1rem;
border-bottom: 1px solid #ccc; border-bottom: 1px solid var(--accent-color);
} }
p { p {
line-height: 1.5; line-height: 1.5;
@@ -45,7 +53,7 @@
margin: 0; margin: 0;
} }
a { a {
color: #4CAF50; color: var(--secondary-color);
text-decoration: none; text-decoration: none;
} }
</style> </style>
@@ -67,9 +75,8 @@
legacy - build something to last. can we give software to the next generation?<br><br> legacy - build something to last. can we give software to the next generation?<br><br>
</p> </p>
</div> </div>
<a href="https://git.patronage.systems/matt/patronageos">source can be found here.</a> <a href="https://git.patronage.systems/matt/patronageos">Look at the project here.</a>
<footer> <footer>
<small><b>trademark pending</b></small> <small><b>trademark pending</b></small>
</footer> </footer>
</body> </body>
</html>