PluginProbe
PowerPress Podcasting plugin by Blubrry / trunk
PowerPress Podcasting plugin by Blubrry vtrunk
11.17.9 11.17.8 11.17.7 11.17.6 11.17.4 11.17.3 11.17.2 11.17.1 11.17 11.16.11 11.16.10 11.16.9 11.16.8 11.16.7 11.16.6 11.16.5 11.16.4 11.16.3 11.16.2 11.16.1 11.9.13 11.9.14 11.9.15 11.9.16 11.9.17 All 383 releases
powerpress / css / steps.css

steps.css in PowerPress Podcasting plugin by Blubrry trunk, at css/steps.css

110 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 #powerpress-steps {
3 margin: 20px 0 30px 0;
4 overflow: hidden;
5 /*CSS counters to number the steps*/
6 counter-reset: step;
7 text-align: center;
8 }
9 #powerpress-steps li {
10 list-style-type: none;
11 color: white;
12 color: #999999;
13 text-transform: uppercase;
14 font-size: 18px;
15 width: 33.33%;
16 float: left;
17 position: relative;
18 }
19 #powerpress-steps li.pp-step-1:before {
20 content: '1';
21 }
22 #powerpress-steps li.pp-step-2:before {
23 content: '2';
24 }
25 #powerpress-steps li.pp-step-3:before {
26 content: '3';
27 }
28 #powerpress-steps li:before {
29 width: 30px;
30 line-height: 30px;
31 display: block;
32 font-size: 18px;
33 color: #333;
34 background: white;
35 background: #999999;
36 color: white;
37 border-radius: 3px;
38 margin: 0 auto 5px auto;
39 font-family: arial, verdana;
40 }
41 #powerpress-steps li:after {
42 content: '';
43 width: 100%;
44 height: 2px;
45 background: #999999;
46 position: absolute;
47 left: -50%;
48 top: 14px;
49 z-index: -1; /*put it behind the numbers*/
50 }
51 #powerpress-steps li:first-child:after {
52 /*connector not needed before the first step*/
53 content: none;
54 }
55 #powerpress-steps li.pp-step-active:before, #powerpress-steps li.pp-step-active:after{
56 background: #0D87E9;
57 color: white;
58 }
59 #powerpress-steps li.pp-step-active {
60 color: #0D87E9;
61 }
62 #powerpress-steps li.pp-step-active p,
63 #powerpress-steps li.pp-step-active h3 {
64 color: #0D87E9;
65 }
66 #powerpress-steps p {
67 text-transform: none;
68 margin: 10px 40px;
69 line-height: 1.3em;
70 }
71 #powerpress-steps h3 {
72 text-transform: none;
73 margin: 10px 40px;
74 font-size: 100%;
75 line-height: 1.3em;
76 position: relative;
77 display: inline-block;
78 }
79 #powerpress-steps a {
80 color: #999999;
81 }
82 #powerpress-steps li.pp-step-active a {
83 color: #003366;
84 color: #0D87E9;
85 }
86 #powerpress-steps li.pp-step-active a:hover {
87 color: #003366;
88 }
89 #powerpress-steps h3.pp-step-h-completed:before
90 {
91 content: url(../images/check.svg); /*'\2713';*/
92 color: #54A954;
93 width: 24px;
94 height: 24px;
95 padding-right: 5px;
96 font-weight: 400;
97 font-size: 32px;
98 position: absolute;
99 left: -30px;
100 }
101
102 @media screen and (max-width: 400px) {
103 #powerpress-steps p,
104 #powerpress-steps h3 {
105 margin: 10px 10px;
106 }
107 #powerpress-steps h3.pp-step-h-completed:before {
108 left: -15px;
109 }
110 }