Add basic html pages and css.

This commit is contained in:
CronyAkatsuki 2024-12-31 19:14:02 +01:00
parent ffa70e8f55
commit b8c985db04
4 changed files with 101 additions and 2 deletions

29
static/css/index.css Normal file
View file

@ -0,0 +1,29 @@
body{
overflow: hidden;
position: absolute;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: #303446;
color: #c6d0f5;
}
input[type=text] {
display: block;
margin: 0 auto;
height: 40px;
font-size: 20px;
width: 100%;
border: none;
background-color: #414559;
color: #c6d0f5;
}
.main {
display: block;
margin: auto;
text-align: center;
width: 50%;
}