Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/HTML/LoginScreen/style.css
2022-09-04 12:45:01 +02:00

42 lines
706 B
CSS

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;
}