post.scss in Text Typing – grab attention with animated typing headlines trunk, at dashboard/post.scss
| 1 | .bPlAdminShortcode { |
| 2 | position: relative; |
| 3 | display: inline-block; |
| 4 | margin: 0 auto; |
| 5 | |
| 6 | input { |
| 7 | cursor: pointer; |
| 8 | text-align: center; |
| 9 | border: none; |
| 10 | outline: none; |
| 11 | background-color: #146ef5; |
| 12 | color: #fff; |
| 13 | padding: 4px 10px; |
| 14 | border-radius: 3px; |
| 15 | } |
| 16 | |
| 17 | .tooltip { |
| 18 | visibility: hidden; |
| 19 | width: 140px; |
| 20 | background-color: #555; |
| 21 | color: #fff; |
| 22 | text-align: center; |
| 23 | |
| 24 | border-radius: 6px; |
| 25 | padding: 5px; |
| 26 | position: absolute; |
| 27 | z-index: 1; |
| 28 | bottom: 150%; |
| 29 | left: 50%; |
| 30 | margin-left: -75px; |
| 31 | opacity: 0; |
| 32 | transition: opacity 0.3s; |
| 33 | |
| 34 | &::after { |
| 35 | content: ""; |
| 36 | position: absolute; |
| 37 | top: 100%; |
| 38 | left: 50%; |
| 39 | margin-left: -5px; |
| 40 | border-width: 5px; |
| 41 | border-style: solid; |
| 42 | border-color: #555 transparent transparent transparent; |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | &:hover .tooltip { |
| 47 | visibility: visible; |
| 48 | opacity: 1; |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | .bPlAdminDetails { |
| 53 | .slideName { |
| 54 | color: green; |
| 55 | font-weight: 500; |
| 56 | } |
| 57 | .slideTitle { |
| 58 | color: red; |
| 59 | } |
| 60 | } |
| 61 |