PluginProbe
Super RSS Reader – Add attractive RSS Feed Widget / 2.3
Super RSS Reader – Add attractive RSS Feed Widget v2.3
trunk 0.8 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 3.0 3.1 3.2 4.0 4.0.1 4.1 4.2 4.3 4.4 4.4.1 4.5 4.6 4.7 4.8 All 33 releases
super-rss-reader / public / srr-css.css

srr-css.css in Super RSS Reader – Add attractive RSS Feed Widget 2.3, at public/srr-css.css

134 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /** Tab settings **/
2 .srr-tab-wrap{
3 margin: 5px 0px 10px!important;
4 background: none !important;
5 border: none !important;
6 padding: 0px !important;
7 }
8 .srr-tab-wrap li{
9 list-style: none !important;
10 float: left;
11 background-image: none !important;
12 background-color: #fff;
13 margin: 5px 5px 0px 0px !important;
14 padding: 3px 10px!important;
15 border-radius: 3px;
16 border: 1px solid #ccc;
17 cursor: pointer;
18 }
19 .srr-active-tab{
20 background: #333 !important;
21 color: white !important;
22 }
23
24 /** General styling **/
25 .srr-wrap{
26 padding: 0px !important;
27 }
28 .srr-wrap div{
29 left: 0px;
30 right: 0px;
31 }
32 .srr-wrap .srr-item{
33 border-top: 0px;
34 padding: 10px;
35 }
36 .srr-wrap .srr-item:last-child{
37 margin: 0px;
38 }
39 .srr-wrap .srr-item > *{
40 margin-bottom: 10px !important;
41 }
42 .srr-wrap .srr-title, .srr-wrap .srr-meta{
43 line-height: 150%;
44 }
45 .srr-wrap .srr-thumb{
46 width: 64px !important;
47 margin: 5px 10px 0 0 !important;
48 float: left !important;
49 }
50
51 /** Styles **/
52
53 /** None **/
54 .srr-style-none .srr-item{
55 padding: 0 0 20px 0 !important;
56 }
57
58 /** Grey **/
59 .srr-style-grey{
60 border: 1px solid #dfdfdf;
61 }
62 .srr-style-grey .srr-item{
63 border-bottom: 1px solid #dfdfdf;
64 }
65 .srr-style-grey .even{
66 background-color: #F8F8F8;
67 }
68
69 /** Dark **/
70 .srr-style-dark{
71 background: #000;
72 border: 1px solid #ccc;
73 color: #DDDDDD!important;
74 }
75 .srr-style-dark a{
76 color: #FFFFFF !important;
77 }
78 .srr-style-dark .srr-item{
79 border-color: #333
80 }
81 .srr-style-dark .even{
82 background: #333333;
83 }
84 .srr-tab-style-dark li{
85 border-color: #666666;
86 background: #333;
87 color: #FFFFFF !important;
88 }
89 .srr-tab-style-dark .srr-active-tab{
90 background: #666666!important;
91 }
92
93 /** Orange **/
94
95 .srr-style-orange{
96 border: 2px solid #FF9900;
97 -webkit-border-radius: 5px;
98 border-radius: 5px;
99 -webkit-box-shadow: inset 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
100 box-shadow: inset 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
101 }
102 .srr-style-orange .srr-item{
103 border-bottom: 1px solid #FF9900;
104 }
105 .srr-tab-style-orange li{
106 border-color: #FF9900;
107 background: #FFF8EC;
108 color: #333333 !important;
109 }
110 .srr-tab-style-orange .srr-active-tab{
111 background: #FF9900!important;
112 color: #FFFFFF !important;
113 }
114
115 /** Clearfix hack **/
116 * html .srr-clearfix{
117 height: 1%;
118 overflow: visible;
119 }
120
121 /* float clearing for IE7 */
122 *+html .srr-clearfix{
123 min-height: 1%;
124 }
125
126 /* float clearing for everyone else */
127 .srr-clearfix:after{
128 clear: both;
129 content: ".";
130 display: block;
131 height: 0;
132 visibility: hidden;
133 font-size: 0;
134 }