fix error + format

This commit is contained in:
2025-04-29 00:29:00 +02:00
parent 3307f89d7d
commit 99f1890257
63 changed files with 9380 additions and 7015 deletions
+58 -57
View File
@@ -1,131 +1,132 @@
:root {
--green: #C2F9BB; /* links etc */
--fg-color: #303034; /* post background */
--bg-color: #1B1B1E; /* page background etc */
--text-color: #ECEAF1; /* text */
--blue-ish: #587291; /* buttons etc */
--green: #c2f9bb; /* links etc */
--fg-color: #303034; /* post background */
--bg-color: #1b1b1e; /* page background etc */
--text-color: #eceaf1; /* text */
--blue-ish: #587291; /* buttons etc */
}
* {
font-family: Arial, Helvetica, sans-serif;
font-family: Arial, Helvetica, sans-serif;
}
html {
scroll-behavior: smooth;
scroll-behavior: smooth;
}
body {
margin: 8px;
margin: 8px;
}
.noselect {
user-select: none;
user-select: none;
}
#modal-shade,
#modal {
display: none;
text-align: center;
display: none;
text-align: center;
}
#modal-shade {
position: fixed;
z-index: 100;
top: 0;
left: 0;
width: 100%;
height: 100%;
position: fixed;
z-index: 100;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#modal {
z-index: 101;
position: fixed;
width: 50%;
height:50%;
left:25%;
right:25%;
top:25%;
z-index: 101;
position: fixed;
width: 50%;
height: 50%;
left: 25%;
right: 25%;
top: 25%;
}
#modal-shade {
background: silver;
opacity: 0.5;
filter: alpha(opacity=50);
background: silver;
opacity: 0.5;
filter: alpha(opacity=50);
}
#modal {
background: rgba(0,0,0,.5);
background: rgba(0, 0, 0, 0.5);
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: var(--fg-color);
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: var(--fg-color);
}
li {
float: left;
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.totib {
margin-top: 6.5%;
margin-top: 6.5%;
}
li a:hover {
background-color: #111;
background-color: #111;
}
a {
text-decoration: none;
text-decoration: none;
}
a:link:not(.no-link-style), a:visited:not(.no-link-style) {
color: var(--green);
a:link:not(.no-link-style),
a:visited:not(.no-link-style) {
color: var(--green);
}
.no-link-style:visited, .no-link-style:link {
color: var(--text-color);
.no-link-style:visited,
.no-link-style:link {
color: var(--text-color);
}
a:hover {
color: red;
color: red;
}
footer {
color: white;
margin-top: 100px;
background-color: var(--fg-color);
color: white;
margin-top: 100px;
background-color: var(--fg-color);
}
.right {
float: right;
float: right;
}
.less_padding {
padding: 6px 14px;
padding: 6px 14px;
}
.pd-great {
padding: 10px 30px;
padding: 10px 30px;
}
.bg-light {
background-color: var(--fg-color);
background-color: var(--fg-color);
}
.bg-dark {
background-color: var(--bg-color);
background-color: var(--bg-color);
}
.no-bg-img {
background: none;
background: none;
}