forked from atums.world/backend
add clearTable command, simple webpage start
This commit is contained in:
parent
f14daf041a
commit
9a93e6269d
10 changed files with 156 additions and 11 deletions
27
public/css/auth/login.css
Normal file
27
public/css/auth/login.css
Normal file
|
@ -0,0 +1,27 @@
|
|||
.container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.content {
|
||||
border: 1px solid var(--border);
|
||||
background-color: var(--background-secondary);
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 2rem;
|
||||
|
||||
width: clamp(200px, 50%, 300px);
|
||||
}
|
||||
|
||||
.content form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
|
@ -1,5 +1,9 @@
|
|||
[data-theme="dark"] {
|
||||
--background: rgb(31, 30, 30);
|
||||
--background-secondary: rgb(45, 45, 45);
|
||||
--border: rgb(31, 30, 30);
|
||||
--text: rgb(255, 255, 255);
|
||||
--text-secondary: rgb(255, 255, 255);
|
||||
}
|
||||
|
||||
body {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue