67
editsMore actions
no edit summary
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* For visual effect, as of now only used on [[Illithid Powers]]. */ | /* For visual effect, as of now only used on [[Illithid Powers]]. */ | ||
.visible-on-hover { | |||
opacity: 0; | |||
transition-property: filter, opacity; | |||
transition-duration: .4s; | |||
} | |||
.visible-on-hover:hover, .visible-on-hover:focus { | .visible-on-hover:hover, .visible-on-hover:focus { | ||
filter: none; | filter: none; | ||
opacity: 1; | opacity: 1; | ||
} | } |