| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- .tool-tip-reference-layer{
- display: none;
- position: absolute;
- width: 0px;
- height: 0px;
- top: 50%;
- left: 50%;
- z-index: 9999999;
- }
- .tool-tip-content{
- display: inline-block;
- position: absolute;
- width: 280px;
- min-height: 210px;
- background: #fff;
- padding: 20px 25px;
- box-shadow: 0px 0px 10px 0px #fff;
- border-radius: 5px;
- z-index: 9999999;
- bottom: auto;
- left: auto;
- top: auto;
- right: auto;
- }
- .tool-tip-arrow{
- display: none;
- width: 18px;
- height: 18px;
- position: absolute;
- left: 50%;
- top: 50%;
- background: #fff;
- box-shadow: 0px 0px 10px 0px #fff;
- }
- .tool-tip-reference-layer.pos-top .tool-tip-content{
- left: calc(50% - 140px);
- top: 0px;
- transform: translate(0px, calc(-100% - 25px));
- }
- .tool-tip-reference-layer.pos-top .tool-tip-arrow{
- display: inline-block;
- bottom: 100%;
- transform: translate(-50%, calc(50% - 25px) ) rotate(45deg);
- top: auto;
- }
- .tool-tip-reference-layer.pos-bottom .tool-tip-content{
- left: calc(50% - 140px);
- top: calc(100% + 25px);
- transform: translate(0px, 0);
- }
- .tool-tip-reference-layer.pos-bottom .tool-tip-arrow{
- display: inline-block;
- top: 100%;
- transform: translate(-50%, calc(-50% + 25px)) rotate(45deg);
- bottom: auto;
- }
- .tool-tip-reference-layer.pos-left .tool-tip-content{
- top: calc(50%);
- left: 0px;
- transform: translate(calc(-100% - 25px), -50%);
- }
- .tool-tip-reference-layer.pos-left .tool-tip-arrow{
- display: inline-block;
- right: 100%;
- transform: translate(calc(50% - 25px), -50%) rotate(45deg);
- left: auto;
- }
- .tool-tip-reference-layer.pos-right .tool-tip-content{
- top: 50%;
- left: calc(100% + 25px);
- transform: translate(0, -50%);
- }
- .tool-tip-reference-layer.pos-right .tool-tip-arrow{
- display: inline-block;
- left: 100%;
- transform: translate(calc(-50% + 25px), -50%) rotate(45deg);
- right: auto;
- }
- .tool-tip-content .tool-tip-title{
- font-family: opensanssemibold;
- font-size: 16px;
- color: #231F20;
- margin-bottom: 15px;
- }
- .tool-tip-content .tool-tip-detail{
- font-family: opensanslight;
- font-size: 15px;
- color: #231F20;
- line-height: 21px;
- margin-bottom: 15px;
- min-height: 84px;
- }
- .tool-tip-content .tool-tip-button-next{
- display: inline-block;
- font-family: opensansregular;
- font-size: 15px;
- color: #77BC00;
- text-decoration: none;
- outline: 0px;
- float: right;
- }
- .tool-tip-content .tool-tip-button-next::after{
- content: "";
- display: inline-block;
- border: 1px solid #77BC00;
- border-width: 0px 1px 1px 0px;
- transform: rotate(-45deg);
- margin-left: 7px;
- width: 8px;
- height: 8px;
- }
- .tool-tip-content .tool-tip-button-skip{
- display: inline-block;
- font-family: opensansregular;
- font-size: 15px;
- color: #93000B;
- text-decoration: none;
- outline: 0px;
- float: left;
- display: none;
- }
- .tool-tip-overlay{
- display: block;
- position: fixed;
- width: 100%;
- height: 100%;
- top: 0px;
- left: 0px;
- bottom: 0px;
- right: 0px;
- background: rgba(0, 0, 0, 0.5);
- z-index: 9999998;
- }
- .tool-tip-active{
- position: relative;
- z-index: 9999999;
- }
- .tool-tip-reference-layer.arrow-left .tool-tip-content{
- left: -10px;
- right: auto;
- }
- .tool-tip-reference-layer.arrow-right .tool-tip-content{
- left: auto;
- right: -10px;
- }
|