Adds basic working version of code

This commit is contained in:
2024-06-02 23:40:27 -05:00
parent 7363fdf3b1
commit fba3c58a8f
21 changed files with 3292 additions and 0 deletions

32
src/App.css Normal file
View File

@@ -0,0 +1,32 @@
#root {
margin: 0 auto;
padding: 2rem;
text-align: center;
}
.photoContainer {
width: 150px;
height: 150px;
}
.photo {
width: 150px;
height: 150px;
}
.photo:hover {
filter: drop-shadow(0 0 2em #646cffaa);
}
.gallery {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.player-position {
position: -webkit-sticky;
position: sticky;
width: 100%;
bottom:0;
}