feat: implementation

This commit is contained in:
Riccardo
2024-05-07 21:52:38 +02:00
parent 734b590482
commit f752787605
26 changed files with 6365 additions and 1 deletions

73
app/globals.css Normal file
View File

@@ -0,0 +1,73 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--foreground-rgb: 0, 0, 0;
--background-start-rgb: 255, 255, 255;
--background-end-rgb: 0, 0, 255;
}
main {
display: flex;
min-height: 100vh;
flex-direction: column;
align-items: center;
justify-content: center;
}
body {
color: rgb(var(--foreground-rgb));
background: linear-gradient(
to bottom right,
transparent,
rgb(var(--background-end-rgb))
)
rgb(var(--background-start-rgb));
}
input {
border: 1px solid #ccc;
}
p {
text-align: center;
}
.dashboard {
display: flex;
flex-direction: column;
width: 60vw;
height: 80vh;
border: 1px solid #ccc;
border-radius: 15px;
padding: 20px;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 5);
background-color: white;
gap: 20px;
overflow: auto;
}
.form {
display: flex;
flex-direction: column;
gap: 10px;
align-items: center;
}
.content {
flex: 1;
border: 1px solid #ccc;
overflow: auto;
padding: 10px;
}
.button {
background-color: #007bff;
color: white;
padding: 10px 20px;
border-radius: 5px;
border: none;
cursor: pointer;
max-width: 200px;
}