General update

This commit is contained in:
Git
2023-08-25 15:04:43 +00:00
parent a30c9a6216
commit 7097ecca16
13 changed files with 1695 additions and 5 deletions

2
s1clone/scripts/background.js Normal file → Executable file
View File

@@ -142,7 +142,7 @@
}
function star(c, x, y, r, p, m,o)
{
ctx.fillStyle = "rgba(255, 255, 255, "+o+")";
ctx.fillStyle = "rgba(0, 0, 0, "+o+")";
ctx.save();
ctx.beginPath();
ctx.translate(x, y);

71
s1clone/scripts/style.css Executable file
View File

@@ -0,0 +1,71 @@
@font-face { font-family: SpookyMagic; src: url(../fonts/SpookyMagic.ttf); }
@font-face { font-family: AceRecords; src: url(../fonts/AceRecords.ttf); }
.headline{
z-index=0;
width: 100%;
text-align: center;
font-family: AceRecords;
font-size: 5em;
}
.prod{
width: 20px;
right: 0;
top: 0;
position: fixed;
cursor: default;
}
.menu{
text-align: center;
font-family: AceRecords;
text-decoration: none;
font-size: 3em;
}
.menu a{
text-decoration: none;
color: #000;
border: solid #000 1px;
padding: 10px;
border-radius: 15px;
background-color: #fff;
margin-left: 1%;
margin-right: 1%;
}
.main{
width:100%;
position: absolute;
top: 5%;
z-index=0;
}
.bgmaster{
position: fixed;
}
.content{
width: 50%;
border: solid #550033 1px;
margin-top: 5%;
margin-left: auto;
margin-right: auto;
border-radius: 30px;
padding: 10px;
font-size: 2em;
font-family: Terminal, monospace;
background-color: #fff;
}
.content a{
color: #444444;
}
input[type="password"]{
font-size: 1em;
font-family: Terminal, monospace;
border-radius: 15px;
padding: 10px;
width: 80%;
}
input[type="password"]:focus {
outline: none;
}
body{
width: 100%;
}