49 lines
951 B
CSS
Executable File
49 lines
951 B
CSS
Executable File
/* 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;
|
|
}
|