its green
This commit is contained in:
parent
7292d2e481
commit
02f387af96
16
index.html
16
index.html
|
@ -10,20 +10,21 @@
|
|||
}
|
||||
|
||||
body {
|
||||
background-color: #002b36; /* Base03 - Background */
|
||||
color: #839496; /* Base0 - Foreground */
|
||||
background-color: #000000; /* Black background */
|
||||
color: #39ff14; /* Phosphor green text */
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #268bd2; /* Blue - Link */
|
||||
color: #39ff14; /* Match phosphor green */
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #2aa198; /* Cyan - Link Hover */
|
||||
color: #80ff80; /* Slightly lighter green on hover */
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #b58900; /* Yellow - Header */
|
||||
color: #39ff14; /* Same green for headers */
|
||||
}
|
||||
|
||||
ul {
|
||||
|
@ -50,7 +51,7 @@
|
|||
width: 100vw;
|
||||
height: 2px;
|
||||
z-index: 2147483649;
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
background: rgba(0, 255, 0, 0.3); /* Subtle green line */
|
||||
opacity: 0.75;
|
||||
pointer-events: none;
|
||||
animation: scanline 2s linear infinite;
|
||||
|
@ -68,7 +69,7 @@
|
|||
background: linear-gradient(
|
||||
to bottom,
|
||||
transparent 50%,
|
||||
rgba(0, 0, 0, 0.3) 51%
|
||||
rgba(0, 255, 0, 0.05) 51%
|
||||
);
|
||||
background-size: 100% 4px;
|
||||
animation: scanlines 1s steps(60) infinite;
|
||||
|
@ -116,3 +117,4 @@
|
|||
</li>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
Loading…
Reference in a new issue