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