2017-05-17 12:38:05 +03:00
|
|
|
//- 💫 CSS > COMPONENTS > TOOLTIPS
|
|
|
|
|
|
|
|
[data-tooltip]
|
|
|
|
position: relative
|
|
|
|
|
|
|
|
@include breakpoint(min, sm)
|
|
|
|
&:before
|
|
|
|
@include position(absolute, top, left, 125%, 50%)
|
|
|
|
display: inline-block
|
|
|
|
content: attr(data-tooltip)
|
|
|
|
background: $color-front
|
|
|
|
border-radius: 2px
|
2017-05-21 21:51:30 +03:00
|
|
|
border: 1px solid rgba($color-subtle-dark, 0.5)
|
2017-05-17 12:38:05 +03:00
|
|
|
color: $color-back
|
2017-05-19 21:24:32 +03:00
|
|
|
font: normal 1.3rem/#{1.25} $font-primary
|
|
|
|
text-transform: none
|
2017-05-17 12:38:05 +03:00
|
|
|
opacity: 0
|
|
|
|
padding: 0.5em 0.75em
|
|
|
|
transform: translateX(-50%) translateY(-2px)
|
|
|
|
transition: opacity 0.1s ease-out, transform 0.1s ease-out
|
|
|
|
visibility: hidden
|
|
|
|
min-width: 200px
|
|
|
|
max-width: 300px
|
|
|
|
z-index: 200
|
|
|
|
|
|
|
|
&:hover:before
|
|
|
|
opacity: 1
|
|
|
|
transform: translateX(-50%) translateY(0)
|
|
|
|
visibility: visible
|