modify a few things before making the page available in the internal network.

This commit is contained in:
2025-01-29 23:20:03 +01:00
parent c18e00e140
commit d77c153af7
5 changed files with 113 additions and 21 deletions

80
assets/css/style-sun.css Normal file
View File

@@ -0,0 +1,80 @@
/* ------------------------------------------------------------ */
/* ------------------ General --------------------------------- */
/* ------------------------------------------------------------ */
body {
background: #ffffff;
color: #0a0a0a;
font-family: Arial, Helvetica, sans-serif;
font-size: 14pt;
max-width: 800px;
margin: auto;
}
body h1 {
text-align: center;
}
/*
main {
max-width: 800px;
margin: auto;
}
*/
.dark-mode {
color: white;
background: black;
}
.light-mode {
color: black;
background: white;
}
a {
/*color: #10602a;
color: #072140;*/
color: #3070b3;
text-decoration: none;
}
/* ------------------------------------------------------------ */
/* Header formatting */
.header {
text-align: center;
}
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */
/* Format lines*/
hr {
border: 2px solid #c0c0c0;
margin: 20px 0 20px 0;
}
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */
/* Grid with base information */
.contentBox {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
/*grid-auto-columns: minmax(10px, auto);*/
}
/* ------------------------------------------------------------ */
/* Footer formatting */
footer {
text-align: center;
clear: both;
/*color: white;
padding: 50px;
font-size: 10px;*/
}
/* ------------------------------------------------------------ */