37 lines
1.0 KiB
Plaintext
Raw Normal View History

2018-04-07 13:48:43 +00:00
mixin anime-mini-item
margin 0.25rem
flex-basis anime-image-small-width
2018-04-07 13:48:43 +00:00
mixin anime-generic-item-image
object-fit cover
border-radius 2px
filter none
2018-04-20 09:47:24 +00:00
will-change filter
2018-04-07 13:48:43 +00:00
transition filter transition-speed ease, opacity transition-speed ease
:hover
filter saturate(1.3)
mixin anime-mini-item-image
2018-04-20 09:47:24 +00:00
anime-generic-item-image
2018-04-07 13:48:43 +00:00
width anime-image-small-width !important
height anime-image-small-height !important
// Make it easier for the browser to layout by specifying max size as well
max-width anime-image-small-width
max-height anime-image-small-height
mixin anime-list-item-image
width anime-image-tiny-width
height anime-image-tiny-height
border-radius 2px
object-fit cover
// Make it easier for the browser to layout by specifying max size as well
max-width anime-image-tiny-width
2018-12-08 02:05:15 +00:00
max-height anime-image-tiny-height
mixin dark-gradient-bottom
background linear-gradient(to top, hsla(0, 0%, 0%, 0.8), hsla(0, 0%, 0%, 0))
border-bottom-left-radius ui-element-border-radius
border-bottom-right-radius ui-element-border-radius