MOre web bs

This commit is contained in:
2026-01-15 22:08:40 +02:00
parent 1ecbdde2c0
commit 7d9d95fcd2
37 changed files with 684 additions and 31 deletions

58
static/css/base.css Normal file
View File

@@ -0,0 +1,58 @@
body,html {
font-family: sans-serif;
margin: 0;
padding: 0;
}
.nav {
position: fixed;
display: flex;
top: 0;
list-style: none;
gap: 10px;
background: gray;
padding: 8px;
margin: 0px;
width: 99.5%;
}
main {
padding-top: 50px
}
.right {
margin-left: auto;
}
.pfp {
width: 25px;
height: 25px;
object-fit: cover;
vertical-align: middle;
margin-right: 5px;
}
.nav a {
font-weight: bold;
text-decoration: none;
color: white;
background: gray;
vertical-align: middle;
}
.nav a:hover {
color: #FFFF88
}
footer {
position: sticky;
bottom: 0;
width: 100%;
padding: 5px;
padding-left: 10px;
background: gray;
color: white;
}

View File

@@ -0,0 +1,41 @@
.table {
margin: 0 auto;
width: 80%;
font-size: 0.95rem;
border-radius: 8px;
overflow: hidden;
border-collapse: collapse;
border: 5px double black;
}
.table-header {
border: 5px double black;
}
.table-header-item {
padding-top: 1px;
padding-bottom: 1px;
padding-left: 5px;
padding-right: 1px;
border: 1px solid black;
border-left: 0.5px thin gray;
border-right: 0.5px thin gray;
}
.table-body {
border: 5px double black;
}
.table-cell {
padding-top: 1px;
padding-bottom: 1px;
padding-left: 5px;
padding-right: 1px;
border: 1px solid black;
border-left: 0.5px thin gray;
border-right: 0.5px thin gray;
}

18
static/css/login.css Normal file
View File

@@ -0,0 +1,18 @@
.login-form {
background: gray;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 10px;
}
.login-form input[type="email"],input[type="password"] {
width: 95%;
}
.login-form input[type="submit"] {
width: 98%;
margin-top: 10px;
}