PluginProbe
Smash Balloon Social Post Feed – Simple Social Feeds for WordPress / 1.3.6
Smash Balloon Social Post Feed – Simple Social Feeds for WordPress v1.3.6
4.12.0 4.10.0 4.9.0 4.8.1 trunk 1.0 1.1 1.12.1 1.2.3 1.2.4 1.2.5 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.4.0 1.4.1 1.4.2 All 171 releases
custom-facebook-feed / css / style.css
style.css
128 lines 1.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 /**************/
3 /*** LAYOUT ***/
4 /**************/
5
6 /* Feed container */
7 #cff {
8 float: left;
9 width: 100%;
10 margin: 0 auto;
11 padding: 0;
12 }
13
14 /* Individual post item */
15 #cff .cff-item{
16 float: left;
17 width: 100%;
18 clear: both;
19 padding: 20px 0;
20 border-bottom: 1px solid #ddd;
21 }
22 #cff .cff-item:first-child{
23 padding-top: 0;
24 }
25
26
27 /******************/
28 /*** TYPOGRAPHY ***/
29 /******************/
30
31 /* Links */
32 #cff a {
33 color:#666;
34 text-decoration:underline;
35 }
36 #cff a:active, #cff a:hover {
37 color: #000;
38 }
39
40 /* Post titles and body text */
41 #cff h4, #cff h3, #cff p{
42 float: left;
43 width: 100%;
44 padding: 0;
45 margin: 5px 0;
46 line-height: 1.4;
47 }
48
49 #cff h4, #cff h3{
50 white-space: pre;
51 white-space: pre-wrap;
52 white-space: pre-line;
53 white-space: -pre-wrap;
54 white-space: -o-pre-wrap;
55 white-space: -moz-pre-wrap;
56 white-space: -hp-pre-wrap;
57 word-wrap: break-word;
58 }
59
60 /* Date */
61 #cff .cff-date{
62 float: left;
63 width: 100%;
64 font-size: 11px;
65 }
66
67 /* Event */
68 #cff .details{
69 float: left;
70 clear: both;
71 width: 100%;
72 padding: 15px 0 10px 0;
73 }
74 #cff .details h5{
75 margin: 0 0 5px 0;
76 font-size: 16px;
77 }
78 #cff .details p{
79 font-size: 14px;
80 }
81
82
83 /*****************/
84 /*** POST META ***/
85 /*****************/
86
87 /* Meta container */
88 #cff .cff-meta{
89 float: left;
90 width: 100%;
91 list-style-type: none;
92 padding: 5px 0;
93 margin: 0;
94 }
95
96 /* View on Facebook / View Link text */
97 #cff .cff-viewpost{
98 float: left;
99 clear: both;
100 font-size: 11px;
101 }
102
103
104 /************/
105 /*** MISC ***/
106 /************/
107
108 /* Like box */
109 #cff .cff-likebox{
110 float: left;
111 width: 100%;
112 margin: 10px 0 0 -10px;
113 }
114
115 /* Clear fix */
116 .clear:after {
117 clear: both;
118 content: ".";
119 display: block;
120 height: 0;
121 visibility: hidden;
122 }
123 .clear {
124 display: inline-block;
125 }
126 .clear {
127 display: block;
128 }