PluginProbe
Super RSS Reader – Add attractive RSS Feed Widget / 2.7
Super RSS Reader – Add attractive RSS Feed Widget v2.7
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 2.7, at public/css/style.css

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