This commit is contained in:
DarkShyMW
2025-01-16 21:12:50 +03:00
parent fd9b72d6d0
commit 74f5dea494

View File

@@ -1,64 +1,78 @@
body { body {
background-color: #000;
color: #0f0;
font-family: "Courier New", Courier, monospace;
margin: 0; margin: 0;
padding: 0; padding: 0;
background-color: black;
color: #00ff00;
font-family: 'Courier New', Courier, monospace;
} }
.header { .header {
text-align: center; display: flex;
padding: 10px; justify-content: center;
align-items: center;
height: 100vh;
} }
.terminal { .terminal {
max-width: 800px; width: 80%;
margin: 20px auto; background-color: #1e1e1e;
border: 2px solid #0f0; border: 2px solid #00ff00;
border-radius: 5px; border-radius: 10px;
background-color: #111; box-shadow: 0 0 10px #00ff00;
box-shadow: 0 0 10px rgba(0, 255, 0, 0.5); overflow: hidden;
} }
.terminal-header { .terminal-header {
display: flex; display: flex;
justify-content: space-between;
align-items: center; align-items: center;
padding: 10px; justify-content: space-between;
background-color: #222; padding: 5px 10px;
border-bottom: 2px solid #0f0; background-color: #333;
color: white;
font-size: 14px;
}
.terminal-buttons {
display: flex;
gap: 5px;
} }
.circle { .circle {
display: inline-block;
width: 12px; width: 12px;
height: 12px; height: 12px;
border-radius: 50%; border-radius: 50%;
margin-right: 5px;
} }
.red { .red {
background-color: #ff4d4d; background-color: #ff5f56;
} }
.yellow { .yellow {
background-color: #ffcc00; background-color: #ffbd2e;
} }
.green { .green {
background-color: #4dff4d; background-color: #27c93f;
} }
.terminal-title { .terminal-title {
color: #0f0; margin-left: auto;
font-weight: bold; margin-right: 10px;
} }
.terminal-body { .terminal-body {
padding: 15px; padding: 20px;
font-size: 16px;
color: #00ff00;
text-align: center; text-align: center;
} }
.dark {
margin: 0;
font-size: 24px;
white-space: nowrap;
}
#blink { #blink {
animation: blink 1s step-start infinite; animation: blink 1s step-start infinite;
} }
@@ -69,6 +83,7 @@ body {
} }
} }
h1.dark { h1.dark {
margin: 0; margin: 0;
padding: 0; padding: 0;