PluginProbe
Super RSS Reader – Add attractive RSS Feed Widget / 3.2
Super RSS Reader – Add attractive RSS Feed Widget v3.2
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 / css / style.css

style.css in Super RSS Reader – Add attractive RSS Feed Widget 3.2, at public/css/style.css

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