PluginProbe
Simple Ticker / 2.08
Simple Ticker v2.08
trunk 1.0 1.01 1.02 1.03 1.04 1.05 1.06 1.07 2.00 2.01 2.02 2.03 2.04 2.05 2.06 2.07 2.08 2.09 2.10 2.11 3.00 3.01 3.02 3.03 All 33 releases
simple-ticker / css / style.css

style.css in Simple Ticker 2.08, at css/style.css

75 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 body {
2 font-family: Arial, Helvetica, Verdana, sans-serif;
3 font-size: 12px;
4 }
5
6 .r-tabs {
7 position: relative;
8 }
9
10 .r-tabs .r-tabs-nav {
11 border-bottom: 1px solid #ccc;
12 }
13
14 .r-tabs .r-tabs-nav .r-tabs-tab {
15 position: relative;
16 top: 1px;
17 }
18
19 .r-tabs .r-tabs-nav .r-tabs-anchor {
20 background: #000000;
21 margin-bottom: 3px;
22 padding: 10px 12px;
23 display: inline-block;
24 text-decoration: none;
25 color: #fff;
26 font-weight: bold;
27 }
28
29 .r-tabs .r-tabs-nav .r-tabs-state-active {
30 background-color: #fff;
31 margin-bottom: -1px;
32 border-top: 1px solid #ccc;
33 border-right: 1px solid #ccc;
34 border-left: 1px solid #ccc;
35 }
36
37 .r-tabs .r-tabs-nav .r-tabs-state-disabled {
38 opacity: 0.5;
39 }
40
41 .r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
42 color: #000000;
43 background-color: #fff;
44 }
45
46 .r-tabs .r-tabs-panel {
47 border-right: 1px solid #ccc;
48 border-bottom: 1px solid #ccc;
49 border-left: 1px solid #ccc;
50 margin-bottom: 3px;
51 }
52
53 .r-tabs .r-tabs-accordion-title .r-tabs-anchor {
54 display: block;
55 padding: 10px;
56 background-color: #000000;
57 color: #fff;
58 font-weight: bold;
59 text-decoration: none;
60 margin-bottom: 3px;
61 }
62
63 .r-tabs .r-tabs-accordion-title.r-tabs-state-disabled {
64 opacity: 0.5;
65 }
66
67 .r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
68 background-color: #fff;
69 color: #000000;
70 border-top: 1px solid #ccc;
71 border-right: 1px solid #ccc;
72 border-left: 1px solid #ccc;
73 margin-bottom: 0;
74 }
75