PluginProbe
Text Typing – grab attention with animated typing headlines / trunk
Text Typing – grab attention with animated typing headlines vtrunk
2.1.0 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
text-typing / dashboard / post.scss

post.scss in Text Typing – grab attention with animated typing headlines trunk, at dashboard/post.scss

61 lines 1019 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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