Skip to content

Commit ef20781

Browse files
committed
Merge pull request usablica#534 from 711fumi/add_new_template_flattener
Add new template 'flattener'
2 parents 43a7ea9 + 2d0838b commit ef20781

File tree

1 file changed

+59
-0
lines changed

1 file changed

+59
-0
lines changed

themes/introjs-flattener.css

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
.introjs-helperNumberLayer {
2+
font-family: tahoma, Arial, verdana, sans-serif;
3+
font-size: 14px;
4+
text-shadow: none;
5+
width: 22px;
6+
height: 22px;
7+
line-height: 22px;
8+
border: 2px solid #ecf0f1;
9+
border-radius: 50%;
10+
background: #e74c3c;
11+
}
12+
13+
.introjs-helperLayer {
14+
background-color: #FFF;
15+
background-color: rgba(255,255,255,.9);
16+
border: none;
17+
border-radius: 2px;
18+
}
19+
20+
.introjs-tooltip {
21+
letter-spacing: .1em;
22+
color: #2c3e50;
23+
font-family: tahoma, Arial, verdana, sans-serif;
24+
border-radius: 2px;
25+
}
26+
27+
.introjs-button {
28+
padding: 0.6em 0.8em;
29+
text-shadow: none;
30+
font-weight: bold;
31+
color: #2c3e50;
32+
font-family: tahoma, Arial, verdana, sans-serif;
33+
background: #ecf0f1;
34+
background-image: none;
35+
-webkit-border-radius: .2em;
36+
-moz-border-radius: .2em;
37+
border-radius: .2em;
38+
-webkit-transition: background .3s, border .3s;
39+
-moz-transition: background .3s, border .3s;
40+
-ms-transition: background .3s, border .3s;
41+
-o-transition: background .3s, border .3s;
42+
transition: background .3s, border .3s;
43+
}
44+
45+
.introjs-prevbutton {
46+
border-radius: .2em 0 0 .2em;
47+
}
48+
49+
.introjs-nextbutton {
50+
border-radius: 0 .2em .2em 0;
51+
}
52+
53+
.introjs-button:hover, .introjs-button:focus {
54+
background: #2c3e50;
55+
color: #fff;
56+
box-shadow: none;
57+
border-color: #2c3e50;
58+
text-decoration: none;
59+
}

0 commit comments

Comments
 (0)