This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffz($minFz, $maxFz, $minVw = 575px, $maxVw = 1920px) | |
tmp = unit($maxFz, '') - unit($minFz, '') | |
tmp1 = unit($maxVw, '') - unit($minVw, '') | |
font-size: $minFz; | |
@media screen and (min-width: $minVw) | |
font-size: 'calc(%s + %s * ((100vw - %s) / %s))' % ($minFz tmp $minVw tmp1) | |
@media screen and (min-width: $maxVw) | |
font-size: $maxFz; | |
/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.tw-wrap { | |
display: inline-block; | |
position: relative; | |
} | |
.tw-tooltip { | |
width: 100px; | |
height: auto; | |
-webkit-border-radius: 5px; | |
-moz-border-radius: 5px; | |
border-radius: 5px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function ($) { | |
var defaultOptions = { | |
'direction': 'top', | |
'width': 100, | |
'html': '', | |
'offset': 10 | |
} | |
$.fn.twTooltip = function (options) { |