Added files

This commit is contained in:
2025-04-04 22:10:30 +02:00
parent f7d6562bbe
commit 37524d7a0c
7 changed files with 569 additions and 0 deletions

52
css/_style.css Normal file
View File

@@ -0,0 +1,52 @@
:root {
--background-color: #1c1c1c;
--primary: #e3e3e3;
}
body {
background-color: var(--background-color);
margin: 0;
}
main {
display: grid;
min-height: 100vh;
place-items: center;
}
header {
color: var(--primary);
}
/*#file {
display: block;
border: 1px solid white;
border-radius: 100vw;
width: 400px;
height: 400px;
background-color: white;
}*/
#input {
display: none;
}
#upload {
display: block;
border: 1px solid var(--primary);
border-radius: 100vw;
width: 400px;
height: 400px;
background-color: var(--primary);
cursor: pointer;
}
#upload > span {
font-size: 2em;
color: var(--background-color);
}