Archived
Private
Public Access
1
0

Initial commit

This commit is contained in:
2022-09-04 12:45:01 +02:00
commit f4a01d6a69
11601 changed files with 4206660 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
body {
background-color: gray;
}
.login {
background-color: darkgray;
width: 500px;
height: 400px;
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%, -50%);
text-align: center;
padding: 50px;
}
.login input {
margin: 10px auto;
width: 400px;
height: 50px;
background: none;
border-color: aquamarine;
border-radius: 25px;
text-align: center;
color: snow;
}
.login h1 {
font-size: 50px;
font-family: "Cooper Black";
color: green;
user-select: none;
}
.login button {
width: 100px;
height: 50px;
background-color: aqua;
margin: 50px auto;
user-select: none;
cursor: pointer;
}