Adds basic working version of code
This commit is contained in:
32
src/App.css
Normal file
32
src/App.css
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user