2016-11-29 15:50:50 +00:00
|
|
|
mixin grid
|
2016-11-29 03:37:36 +00:00
|
|
|
horizontal-wrap
|
2016-11-28 16:06:00 +00:00
|
|
|
justify-content center
|
|
|
|
|
2016-11-29 15:50:50 +00:00
|
|
|
mixin grid-cell
|
2016-11-28 16:06:00 +00:00
|
|
|
position relative
|
|
|
|
|
|
|
|
width 16vw
|
2017-06-08 09:51:34 +00:00
|
|
|
height 16vw
|
2016-11-28 16:06:00 +00:00
|
|
|
min-width 90px
|
|
|
|
min-height 127px
|
2017-06-10 00:35:07 +00:00
|
|
|
max-width 142px
|
|
|
|
max-height 201px
|
2016-11-28 16:06:00 +00:00
|
|
|
border-radius 3px
|
|
|
|
|
|
|
|
background-size cover
|
|
|
|
background-position 50% 50%
|
|
|
|
|
|
|
|
margin 0.5rem
|
|
|
|
|
2016-11-29 15:50:50 +00:00
|
|
|
mixin grid-text
|
|
|
|
vertical
|
|
|
|
width 100%
|
|
|
|
height 100%
|
|
|
|
align-items center
|
|
|
|
justify-content center
|
|
|
|
font-size 1rem
|
|
|
|
color rgb(160, 160, 160)
|
2016-11-28 16:06:00 +00:00
|
|
|
|
2016-11-29 15:50:50 +00:00
|
|
|
mixin grid-image
|
2016-11-28 16:06:00 +00:00
|
|
|
width 100%
|
|
|
|
height 100%
|
2016-11-29 15:50:50 +00:00
|
|
|
border-radius 3px
|
|
|
|
object-fit cover
|
|
|
|
|
|
|
|
mixin grid-icon
|
|
|
|
font-size 2.5rem
|
|
|
|
margin-top 2rem
|
|
|
|
margin-bottom 0.7rem
|
|
|
|
color link-color
|
|
|
|
|
|
|
|
mixin flip-card
|
|
|
|
:hover
|
|
|
|
.front
|
|
|
|
transform rotateY(180deg)
|
|
|
|
opacity 0
|
|
|
|
.back
|
|
|
|
transform rotateY(0deg)
|
|
|
|
opacity 1
|
2016-11-28 16:06:00 +00:00
|
|
|
|
|
|
|
.front
|
|
|
|
position absolute
|
|
|
|
left 0
|
|
|
|
top 0
|
|
|
|
opacity 1
|
2016-11-30 15:29:36 +00:00
|
|
|
default-transition
|
2016-11-30 12:33:11 +00:00
|
|
|
transform rotateY(0)
|
2016-11-28 16:06:00 +00:00
|
|
|
|
|
|
|
.back
|
|
|
|
position absolute
|
|
|
|
left 0
|
|
|
|
top 0
|
|
|
|
opacity 0
|
2016-11-30 15:29:36 +00:00
|
|
|
default-transition
|
2016-11-29 15:50:50 +00:00
|
|
|
transform rotateY(180deg)
|