You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PersonalWebsite_Static/css/masonry.css

46 lines
829 B
CSS

.grid-item {
background-color: #eaeaea;
border-radius: 3px;
width: 240px;
margin-bottom: 10px;
padding: 5px;
box-sizing: border-box;
height: 200px;
animation: FadeIn 0.22s; }
.grid {
margin: 0 auto;
transition: 0.2s all; }
.grid-item--tall3 {
height: 300px; }
.grid-item--tall4 {
height: 400px; }
.grid-item--width2 {
background-color: #81d4fa;
width: 490px; }
.grid-item--image {
width: fit-content;
height: fit-content; }
@media (max-width: 575px) {
.grid-item--width2 {
width: 100%; } }
.blur-me {
filter: grayscale(10%) blur(0.5px) brightness(100%);
opacity: 0.8;
box-shadow: none; }
.unblur-me {
filter: grayscale(0%) blur(0px) brightness(100%);
opacity: 1;
box-shadow: none; }
.grid:hover .grid-item:hover {
opacity: 1; }
/*# sourceMappingURL=masonry.css.map */