82 lines
2.4 KiB
HTML
82 lines
2.4 KiB
HTML
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>PatronageOS</title>
|
|
<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 {
|
|
height: 100%;
|
|
background-color: var(--background-color);
|
|
}
|
|
html {
|
|
display: table;
|
|
margin: auto;
|
|
}
|
|
body {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
font-family: 'Helvetica Neue', Arial, sans-serif; /* Replace with your preferred system font */
|
|
text-align: center;
|
|
color: var(--text-color);
|
|
}
|
|
footer {
|
|
position: absolute;
|
|
bottom: 5px;
|
|
left: 5px;
|
|
}
|
|
small {
|
|
text-align: left;
|
|
}
|
|
h1, h2 {
|
|
margin: 0;
|
|
}
|
|
h1 {
|
|
font-size: 3em;
|
|
color: var(--primary-color);
|
|
}
|
|
h2 {
|
|
font-size: 1.5em;
|
|
padding: 1rem;
|
|
border-bottom: 1px solid var(--accent-color);
|
|
}
|
|
p {
|
|
line-height: 1.5;
|
|
}
|
|
ul li {
|
|
margin: 0;
|
|
}
|
|
a {
|
|
color: var(--secondary-color);
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>PatronageOS</h1>
|
|
<div style="max-width: 800px; margin: auto;">
|
|
<h2>sovereignty</h2>
|
|
<h2>simplicity</h2>
|
|
<h2>security</h2>
|
|
<h2>legacy</h2>
|
|
<p>
|
|
simplicity - one OS. server, desktop and mobile.<br>
|
|
<ul style="list-style: none;">
|
|
<li>"Simplify, then add lightness" - Colin Chapman, Lotus motors</li>
|
|
</ul>
|
|
UNIX philosophy - modular and functional. think twice, code once.<br><br>
|
|
security - make connections and permissions explicit. enforce transparency and freedom of association.<br><br>
|
|
legacy - build something to last. can we give software to the next generation?<br><br>
|
|
</p>
|
|
</div>
|
|
<a href="https://git.patronage.systems/matt/patronageos">project is here.</a>
|
|
<footer>
|
|
<small><b>trademark pending</b></small>
|
|
</footer>
|
|
</body> |