This commit is contained in:
EduardSkibidiGooner 2024-09-28 22:27:06 +03:00
parent 864c2c6c1c
commit 6a370f87f9
3 changed files with 5 additions and 0 deletions

BIN
Instagram.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
cursor.cur Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 766 B

View file

@ -10,6 +10,7 @@
background-color: black; background-color: black;
color: white; color: white;
font-family: monospace; font-family: monospace;
cursor: url('./cursor.cur'), auto;
} }
.terminal { .terminal {
background-color: black; background-color: black;
@ -36,6 +37,7 @@
.terminal a { .terminal a {
color: white; color: white;
text-decoration: none; text-decoration: none;
cursor: url('./cursor.cur'), auto; /* Custom cursor for links */
} }
.terminal a:hover { .terminal a:hover {
text-decoration: underline; text-decoration: underline;
@ -53,6 +55,7 @@
#song { #song {
text-align: center; text-align: center;
} }
a{ cursor: url('./cursor.cur'), auto;}
</style> </style>
</head> </head>
<body> <body>
@ -61,6 +64,7 @@
<ul> <ul>
<li><a href="/CS/">CS</a></li> <li><a href="/CS/">CS</a></li>
</ul> </ul>
<p style="line-height: 50px; height: 210px;">&nbsp;</p> <p style="line-height: 50px; height: 210px;">&nbsp;</p>
</div> </div>
<div id="app"></div> <div id="app"></div>
@ -91,5 +95,6 @@
albumCoverElement.innerHTML = '<img src="' + albumImageUrl + '" alt="Album Cover">'; albumCoverElement.innerHTML = '<img src="' + albumImageUrl + '" alt="Album Cover">';
}); });
</script> </script>
</body> </body>
</html> </html>