????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 52.15.133.37 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.astacus.se/wp-content/themes/x/framework/css/src/site/_scss/stacks/icon/ |
Upload File : |
// ============================================================================= // _TOOLTIPS.SCSS // ----------------------------------------------------------------------------- // Site styles. // ============================================================================= // ============================================================================= // TABLE OF CONTENTS // ----------------------------------------------------------------------------- // 01. Base Styles // 02. Arrows // ============================================================================= // Base Styles // ============================================================================= .tooltip { position: absolute; z-index: $zindexTooltip; display: block; visibility: visible; padding: 0.455em; @include font-size(1.1); font-weight: normal; line-height: 1.2; text-shadow: none; @include opacity(0); @include translate3d(0, 0, 0); @include transition(#{opacity 0.3s ease}); &.top { margin-top: -0.273em; } &.right { margin-left: 0.273em; } &.bottom { margin-top: 0.273em; } &.left { margin-left: -0.273em; } } .tooltip-inner { max-width: 200px; padding: 0.727em 0.818em; color: $tooltipColor; text-align: center; text-decoration: none; background-color: $tooltipBackground; } // Arrows // ============================================================================= .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; } .tooltip { &.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -$tooltipArrowWidth; border-width: $tooltipArrowWidth $tooltipArrowWidth 0; border-top-color: $tooltipArrowColor; } &.right .tooltip-arrow { top: 50%; left: 0; margin-top: -$tooltipArrowWidth; border-width: $tooltipArrowWidth $tooltipArrowWidth $tooltipArrowWidth 0; border-right-color: $tooltipArrowColor; } &.left .tooltip-arrow { top: 50%; right: 0; margin-top: -$tooltipArrowWidth; border-width: $tooltipArrowWidth 0 $tooltipArrowWidth $tooltipArrowWidth; border-left-color: $tooltipArrowColor; } &.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -$tooltipArrowWidth; border-width: 0 $tooltipArrowWidth $tooltipArrowWidth; border-bottom-color: $tooltipArrowColor; } }