first commit

This commit is contained in:
nix
2026-05-16 11:10:19 +02:00
commit 509c9b3737
172 changed files with 14496 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
/* Dracula Log Viewer Theme */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700&display=swap');
body {
background-color: #282a36;
color: #f8f8f2;
font-family: 'Comfortaa', cursive;
margin: 0;
padding: 2rem;
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
color: #bd93f9;
margin-bottom: 1.5rem;
font-size: 2.3rem;
text-align: center;
}
/* Output box */
.log-box {
background: #44475a;
border-radius: 10px;
padding: 1.5rem 2rem;
font-size: 1.2rem;
max-width: 900px;
width: 100%;
box-shadow: 0 6px 25px rgba(0,0,0,0.4);
line-height: 1.6;
overflow-wrap: break-word;
word-break: break-all;
}
/* Highlight line on hover */
.log-box:hover {
background-color: #6272a4;
transform: translateY(-3px);
transition: 0.2s;
}
/* Footer */
footer {
margin-top: 3rem;
font-size: 0.9rem;
color: #6272a4;
}