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.
51 lines
867 B
Sass
51 lines
867 B
Sass
@import "breakpoint-helpers"
|
|
|
|
.grid-item
|
|
//background-color: coral
|
|
width: 240px
|
|
margin-bottom: 10px
|
|
padding: 5px
|
|
box-sizing: border-box
|
|
height: 200px
|
|
//box-shadow: 0 2px 3px 0px rgba(0,0,0,0.25)
|
|
transition: 0.22s all
|
|
|
|
|
|
.grid
|
|
margin: 0 auto
|
|
transition: .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
|
|
|
|
@include respond-below(xs)
|
|
.grid-item--width2
|
|
width: 100%
|
|
|
|
.blur-me
|
|
filter: grayscale(20%) blur(0.7px) brightness(94%)
|
|
opacity: .8
|
|
//transform: scale(.995)
|
|
box-shadow: none
|
|
|
|
.grid:hover .grid-item:hover
|
|
//transform: scale(1.005)
|
|
filter: blur(0px)
|
|
opacity: 1
|
|
//box-shadow: 0 8px 20px 0px rgba(0,0,0,0.125)
|
|
|
|
> img
|
|
filter: drop-shadow(0px 2px 3px rgba(0,0,0,0.25))
|