Commit dd4246ead6fb8d7365c8c149fb5d38bfbc14d9aa

Authored by Evandro Jr
1 parent d5330712

removed temporary files

plugins/comment_paragraph/lab/bubbles.css
... ... @@ -1,1395 +0,0 @@
1   -/* ------------------------------------------
2   -PURE CSS SPEECH BUBBLES
3   -by Nicolas Gallagher
4   -- http://nicolasgallagher.com/pure-css-speech-bubbles/
5   -
6   -http://nicolasgallagher.com
7   -http://twitter.com/necolas
8   -
9   -Created: 02 March 2010
10   -Version: 1.2 (03 March 2011)
11   -
12   -Dual licensed under MIT and GNU GPLv2 Nicolas Gallagher
13   ------------------------------------------- */
14   -
15   -/* NOTE: Some declarations use longhand notation so that it can be clearly
16   -explained what specific properties or values do and what their relationship
17   -is to other properties or values in creating the effect */
18   -
19   -/* ============================================================================================================================
20   -== GENERAL STYLES
21   -** ============================================================================================================================ */
22   -
23   -body {
24   - padding:0;
25   - margin:0;
26   - font:1em/1.4 Cambria, Georgia, sans-serif;
27   - color:#333;
28   - background:#fff;
29   -}
30   -
31   -a:link,
32   -a:visited {
33   - border-bottom:1px solid #c55500;
34   - text-decoration:none;
35   - color:#c55500;
36   -}
37   -
38   -a:visited {
39   - border-bottom:1px solid #730800;
40   - color:#730800;
41   -}
42   -
43   -a:hover,
44   -a:focus,
45   -a:active {
46   - border:0;
47   - color:#fff;
48   - background:#c55500;
49   -}
50   -
51   -a:visited:hover,
52   -a:visited:focus,
53   -a:visited:active {
54   - color:#fff;
55   - background:#730800;
56   -}
57   -
58   -#container {
59   - width:500px;
60   - padding:0 0 50px;
61   - margin:0 auto;
62   -}
63   -
64   -h1 {
65   - margin:1em 0 0;
66   - font-size:2.5em;
67   - font-weight:normal;
68   - line-height:1.2;
69   - text-align:center;
70   -}
71   -
72   -h2 {
73   - margin:0.5em 0 1.5em;
74   - font-size:1.25em;
75   - font-weight:normal;
76   - font-style:italic;
77   - text-align:center;
78   -}
79   -
80   -p {
81   - margin:1em 0;
82   -}
83   -
84   -.content h2 {
85   - margin:2em 0 0.75em;
86   - font-size:2em;
87   - font-weight:bold;
88   - font-style:normal;
89   - text-align:left;
90   -}
91   -
92   -blockquote {
93   - margin:1em 0;
94   -}
95   -
96   -blockquote p {
97   - margin:0;
98   - font-size:2em;
99   -}
100   -
101   -.follow {
102   - clear:both;
103   - margin-top:2em;
104   - font-size:1.125em;
105   -}
106   -
107   -.follow span {
108   - font-weight:bold;
109   -}
110   -
111   -
112   -/*
113   - Should you want to set a background colour on a containing element
114   - certain types of bubble effect may require you to include these
115   - style declarations.
116   - */
117   -.content {
118   - position:relative;
119   - z-index:1;
120   -}
121   -
122   -
123   -/* ============================================================================================================================
124   -== BUBBLE WITH AN ISOCELES TRIANGLE
125   -** ============================================================================================================================ */
126   -
127   -/* THE SPEECH BUBBLE
128   -------------------------------------------------------------------------------------------------------------------------------- */
129   -
130   -.triangle-isosceles {
131   - position:relative;
132   - padding:15px;
133   - margin:1em 0 3em;
134   - color:#000;
135   - background:#f3961c; /* default background for browsers without gradient support */
136   - /* css3 */
137   - background:-webkit-gradient(linear, 0 0, 0 100%, from(#f9d835), to(#f3961c));
138   - background:-moz-linear-gradient(#f9d835, #f3961c);
139   - background:-o-linear-gradient(#f9d835, #f3961c);
140   - background:linear-gradient(#f9d835, #f3961c);
141   - -webkit-border-radius:10px;
142   - -moz-border-radius:10px;
143   - border-radius:10px;
144   -}
145   -
146   -/* Variant : for top positioned triangle
147   ------------------------------------------- */
148   -
149   -.triangle-isosceles.top {
150   - background:-webkit-gradient(linear, 0 0, 0 100%, from(#f3961c), to(#f9d835));
151   - background:-moz-linear-gradient(#f3961c, #f9d835);
152   - background:-o-linear-gradient(#f3961c, #f9d835);
153   - background:linear-gradient(#f3961c, #f9d835);
154   -}
155   -
156   -/* Variant : for left/right positioned triangle
157   ------------------------------------------- */
158   -
159   -.triangle-isosceles.left {
160   - margin-left:50px;
161   - background:#f3961c;
162   -}
163   -
164   -/* Variant : for right positioned triangle
165   ------------------------------------------- */
166   -
167   -.triangle-isosceles.right {
168   - margin-right:50px;
169   - background:#f3961c;
170   -}
171   -
172   -/* THE TRIANGLE
173   -------------------------------------------------------------------------------------------------------------------------------- */
174   -
175   -/* creates triangle */
176   -.triangle-isosceles:after {
177   - content:"";
178   - position:absolute;
179   - bottom:-15px; /* value = - border-top-width - border-bottom-width */
180   - left:50px; /* controls horizontal position */
181   - border-width:15px 15px 0; /* vary these values to change the angle of the vertex */
182   - border-style:solid;
183   - border-color:#f3961c transparent;
184   - /* reduce the damage in FF3.0 */
185   - display:block;
186   - width:0;
187   -}
188   -
189   -/* Variant : top
190   ------------------------------------------- */
191   -
192   -.triangle-isosceles.top:after {
193   - top:-15px; /* value = - border-top-width - border-bottom-width */
194   - right:50px; /* controls horizontal position */
195   - bottom:auto;
196   - left:auto;
197   - border-width:0 15px 15px; /* vary these values to change the angle of the vertex */
198   - border-color:#f3961c transparent;
199   -}
200   -
201   -/* Variant : left
202   ------------------------------------------- */
203   -
204   -.triangle-isosceles.left:after {
205   - top:16px; /* controls vertical position */
206   - left:-50px; /* value = - border-left-width - border-right-width */
207   - bottom:auto;
208   - border-width:10px 50px 10px 0;
209   - border-color:transparent #f3961c;
210   -}
211   -
212   -/* Variant : right
213   ------------------------------------------- */
214   -
215   -.triangle-isosceles.right:after {
216   - top:16px; /* controls vertical position */
217   - right:-50px; /* value = - border-left-width - border-right-width */
218   - bottom:auto;
219   - left:auto;
220   - border-width:10px 0 10px 50px;
221   - border-color:transparent #f3961c;
222   -}
223   -
224   -
225   -/* ============================================================================================================================
226   -== BUBBLE WITH A RIGHT-ANGLED TRIANGLE
227   -** ============================================================================================================================ */
228   -
229   -/* THE SPEECH BUBBLE
230   -------------------------------------------------------------------------------------------------------------------------------- */
231   -
232   -.triangle-right {
233   - position:relative;
234   - padding:15px;
235   - margin:1em 0 3em;
236   - color:#fff;
237   - background:#075698; /* default background for browsers without gradient support */
238   - /* css3 */
239   - background:-webkit-gradient(linear, 0 0, 0 100%, from(#2e88c4), to(#075698));
240   - background:-moz-linear-gradient(#2e88c4, #075698);
241   - background:-o-linear-gradient(#2e88c4, #075698);
242   - background:linear-gradient(#2e88c4, #075698);
243   - -webkit-border-radius:10px;
244   - -moz-border-radius:10px;
245   - border-radius:10px;
246   -}
247   -
248   -/* Variant : for top positioned triangle
249   ------------------------------------------- */
250   -
251   -.triangle-right.top {
252   - background:-webkit-gradient(linear, 0 0, 0 100%, from(#075698), to(#2e88c4));
253   - background:-moz-linear-gradient(#075698, #2e88c4);
254   - background:-o-linear-gradient(#075698, #2e88c4);
255   - background:linear-gradient(#075698, #2e88c4);
256   -}
257   -
258   -/* Variant : for left positioned triangle
259   ------------------------------------------- */
260   -
261   -.triangle-right.left {
262   - margin-left:40px;
263   - background:#075698;
264   -}
265   -
266   -/* Variant : for right positioned triangle
267   ------------------------------------------- */
268   -
269   -.triangle-right.right {
270   - margin-right:40px;
271   - background:#075698;
272   -}
273   -
274   -/* THE TRIANGLE
275   -------------------------------------------------------------------------------------------------------------------------------- */
276   -
277   -.triangle-right:after {
278   - content:"";
279   - position:absolute;
280   - bottom:-20px; /* value = - border-top-width - border-bottom-width */
281   - left:50px; /* controls horizontal position */
282   - border-width:20px 0 0 20px; /* vary these values to change the angle of the vertex */
283   - border-style:solid;
284   - border-color:#075698 transparent;
285   - /* reduce the damage in FF3.0 */
286   - display:block;
287   - width:0;
288   -}
289   -
290   -/* Variant : top
291   ------------------------------------------- */
292   -
293   -.triangle-right.top:after {
294   - top:-20px; /* value = - border-top-width - border-bottom-width */
295   - right:50px; /* controls horizontal position */
296   - bottom:auto;
297   - left:auto;
298   - border-width:20px 20px 0 0; /* vary these values to change the angle of the vertex */
299   - border-color:transparent #075698;
300   -}
301   -
302   -/* Variant : left
303   ------------------------------------------- */
304   -
305   -.triangle-right.left:after {
306   - top:16px;
307   - left:-40px; /* value = - border-left-width - border-right-width */
308   - bottom:auto;
309   - border-width:15px 40px 0 0; /* vary these values to change the angle of the vertex */
310   - border-color:transparent #075698;
311   -}
312   -
313   -/* Variant : right
314   ------------------------------------------- */
315   -
316   -.triangle-right.right:after {
317   - top:16px;
318   - right:-40px; /* value = - border-left-width - border-right-width */
319   - bottom:auto;
320   - left:auto;
321   - border-width:15px 0 0 40px; /* vary these values to change the angle of the vertex */
322   - border-color:transparent #075698 ;
323   -}
324   -
325   -
326   -/* ============================================================================================================================
327   -== BUBBLE WITH AN OBTUSE TRIANGLE
328   -** ============================================================================================================================ */
329   -
330   -/* THE SPEECH BUBBLE
331   -------------------------------------------------------------------------------------------------------------------------------- */
332   -
333   -.triangle-obtuse {
334   - position:relative;
335   - padding:15px;
336   - margin:1em 0 3em;
337   - color:#fff;
338   - background:#c81e2b;
339   - /* css3 */
340   - background:-webkit-gradient(linear, 0 0, 0 100%, from(#f04349), to(#c81e2b));
341   - background:-moz-linear-gradient(#f04349, #c81e2b);
342   - background:-o-linear-gradient(#f04349, #c81e2b);
343   - background:linear-gradient(#f04349, #c81e2b);
344   - -webkit-border-radius:10px;
345   - -moz-border-radius:10px;
346   - border-radius:10px;
347   -}
348   -
349   -/* Variant : for top positioned triangle
350   ------------------------------------------- */
351   -
352   -.triangle-obtuse.top {
353   - background:-webkit-gradient(linear, 0 0, 0 100%, from(#c81e2b), to(#f04349));
354   - background:-moz-linear-gradient(#c81e2b, #f04349);
355   - background:-o-linear-gradient(#c81e2b, #f04349);
356   - background:linear-gradient(#c81e2b, #f04349);
357   -}
358   -
359   -/* Variant : for left positioned triangle
360   ------------------------------------------- */
361   -
362   -.triangle-obtuse.left {
363   - margin-left:50px;
364   - background:#c81e2b;
365   -}
366   -
367   -/* Variant : for right positioned triangle
368   ------------------------------------------- */
369   -
370   -.triangle-obtuse.right {
371   - margin-right:50px;
372   - background:#c81e2b;
373   -}
374   -
375   -/* THE TRIANGLE
376   -------------------------------------------------------------------------------------------------------------------------------- */
377   -
378   -/* creates the wider right-angled triangle */
379   -.triangle-obtuse:before {
380   - content:"";
381   - position:absolute;
382   - bottom:-20px; /* value = - border-top-width - border-bottom-width */
383   - left:60px; /* controls horizontal position */
384   - border:0;
385   - border-right-width:30px; /* vary this value to change the angle of the vertex */
386   - border-bottom-width:20px; /* vary this value to change the height of the triangle. must be equal to the corresponding value in :after */
387   - border-style:solid;
388   - border-color:transparent #c81e2b;
389   - /* reduce the damage in FF3.0 */
390   - display:block;
391   - width:0;
392   -}
393   -
394   -/* creates the narrower right-angled triangle */
395   -.triangle-obtuse:after {
396   - content:"";
397   - position:absolute;
398   - bottom:-20px; /* value = - border-top-width - border-bottom-width */
399   - left:80px; /* value = (:before's left) + (:before's border-right/left-width) - (:after's border-right/left-width) */
400   - border:0;
401   - border-right-width:10px; /* vary this value to change the angle of the vertex */
402   - border-bottom-width:20px; /* vary this value to change the height of the triangle. must be equal to the corresponding value in :before */
403   - border-style:solid;
404   - border-color:transparent #fff;
405   - /* reduce the damage in FF3.0 */
406   - display:block;
407   - width:0;
408   -}
409   -
410   -/* Variant : top
411   ------------------------------------------- */
412   -
413   -.triangle-obtuse.top:before {
414   - top:-20px; /* value = - border-top-width - border-bottom-width */
415   - bottom:auto;
416   - left:auto;
417   - right:60px; /* controls horizontal position */
418   - border:0;
419   - border-left-width:30px; /* vary this value to change the width of the triangle */
420   - border-top-width:20px; /* vary this value to change the height of the triangle. must be equal to the corresponding value in :after */
421   - border-color:transparent #c81e2b;
422   -}
423   -
424   -.triangle-obtuse.top:after {
425   - top:-20px; /* value = - border-top-width - border-bottom-width */
426   - bottom:auto;
427   - left:auto;
428   - right:80px; /* value = (:before's right) + (:before's border-right/left-width) - (:after's border-right/left-width) */
429   - border-width:0;
430   - border-left-width:10px; /* vary this value to change the width of the triangle */
431   - border-top-width:20px; /* vary this value to change the height of the triangle. must be equal to the corresponding value in :before */
432   - border-color:transparent #fff;
433   -}
434   -
435   -/* Variant : left
436   ------------------------------------------- */
437   -
438   -.triangle-obtuse.left:before {
439   - top:15px; /* controls vertical position */
440   - bottom:auto;
441   - left:-50px; /* value = - border-left-width - border-right-width */
442   - border:0;
443   - border-bottom-width:30px; /* vary this value to change the height of the triangle */
444   - border-left-width:50px; /* vary this value to change the width of the triangle. must be equal to the corresponding value in :after */
445   - border-color:#c81e2b transparent;
446   -}
447   -
448   -.triangle-obtuse.left:after {
449   - top:35px; /* value = (:before's top) + (:before's border-top/bottom-width) - (:after's border-top/bottom-width) */
450   - bottom:auto;
451   - left:-50px; /* value = - border-left-width - border-right-width */
452   - border:0;
453   - border-bottom-width:10px; /* vary this value to change the height of the triangle */
454   - border-left-width:50px; /* vary this value to change the width of the triangle. must be equal to the corresponding value in :before */
455   - border-color:#fff transparent;
456   -}
457   -
458   -/* Variant : right
459   ------------------------------------------- */
460   -
461   -.triangle-obtuse.right:before {
462   - top:15px; /* controls vertical position */
463   - bottom:auto;
464   - left:auto;
465   - right:-50px; /* value = - border-left-width - border-right-width */
466   - border:0;
467   - border-bottom-width:30px; /* vary this value to change the height of the triangle */
468   - border-right-width:50px; /* vary this value to change the width of the triangle. must be equal to the corresponding value in :after */
469   - border-color:#c81e2b transparent;
470   -}
471   -
472   -.triangle-obtuse.right:after {
473   - top:35px; /* value = (:before's top) + (:before's border-top/bottom-width) - (:after's border-top/bottom-width) */
474   - bottom:auto;
475   - right:-50px; /* value = - border-left-width - border-right-width */
476   - left:auto;
477   - border:0;
478   - border-bottom-width:10px; /* vary this value to change the height of the triangle */
479   - border-right-width:50px; /* vary this value to change the width of the triangle. must be equal to the corresponding value in :before */
480   - border-color:#fff transparent;
481   -}
482   -
483   -
484   -/* ============================================================================================================================
485   -== BUBBLE WITH A BORDER AND TRIANGLE
486   -** ============================================================================================================================ */
487   -
488   -/* THE SPEECH BUBBLE
489   -------------------------------------------------------------------------------------------------------------------------------- */
490   -
491   -.triangle-border {
492   - position:relative;
493   - padding:15px;
494   - margin:1em 0 3em;
495   - border:5px solid #5a8f00;
496   - color:#333;
497   - background:#fff;
498   - /* css3 */
499   - -webkit-border-radius:10px;
500   - -moz-border-radius:10px;
501   - border-radius:10px;
502   -}
503   -
504   -/* Variant : for left positioned triangle
505   ------------------------------------------- */
506   -
507   -.triangle-border.left {
508   - margin-left:30px;
509   -}
510   -
511   -/* Variant : for right positioned triangle
512   ------------------------------------------- */
513   -
514   -.triangle-border.right {
515   - margin-right:30px;
516   -}
517   -
518   -/* THE TRIANGLE
519   -------------------------------------------------------------------------------------------------------------------------------- */
520   -
521   -.triangle-border:before {
522   - content:"";
523   - position:absolute;
524   - bottom:-20px; /* value = - border-top-width - border-bottom-width */
525   - left:40px; /* controls horizontal position */
526   - border-width:20px 20px 0;
527   - border-style:solid;
528   - border-color:#5a8f00 transparent;
529   - /* reduce the damage in FF3.0 */
530   - display:block;
531   - width:0;
532   -}
533   -
534   -/* creates the smaller triangle */
535   -.triangle-border:after {
536   - content:"";
537   - position:absolute;
538   - bottom:-13px; /* value = - border-top-width - border-bottom-width */
539   - left:47px; /* value = (:before left) + (:before border-left) - (:after border-left) */
540   - border-width:13px 13px 0;
541   - border-style:solid;
542   - border-color:#fff transparent;
543   - /* reduce the damage in FF3.0 */
544   - display:block;
545   - width:0;
546   -}
547   -
548   -/* Variant : top
549   ------------------------------------------- */
550   -
551   -/* creates the larger triangle */
552   -.triangle-border.top:before {
553   - top:-20px; /* value = - border-top-width - border-bottom-width */
554   - bottom:auto;
555   - left:auto;
556   - right:40px; /* controls horizontal position */
557   - border-width:0 20px 20px;
558   -}
559   -
560   -/* creates the smaller triangle */
561   -.triangle-border.top:after {
562   - top:-13px; /* value = - border-top-width - border-bottom-width */
563   - bottom:auto;
564   - left:auto;
565   - right:47px; /* value = (:before right) + (:before border-right) - (:after border-right) */
566   - border-width:0 13px 13px;
567   -}
568   -
569   -/* Variant : left
570   ------------------------------------------- */
571   -
572   -/* creates the larger triangle */
573   -.triangle-border.left:before {
574   - top:10px; /* controls vertical position */
575   - bottom:auto;
576   - left:-30px; /* value = - border-left-width - border-right-width */
577   - border-width:15px 30px 15px 0;
578   - border-color:transparent #5a8f00;
579   -}
580   -
581   -/* creates the smaller triangle */
582   -.triangle-border.left:after {
583   - top:16px; /* value = (:before top) + (:before border-top) - (:after border-top) */
584   - bottom:auto;
585   - left:-21px; /* value = - border-left-width - border-right-width */
586   - border-width:9px 21px 9px 0;
587   - border-color:transparent #fff;
588   -}
589   -
590   -/* Variant : right
591   ------------------------------------------- */
592   -
593   -/* creates the larger triangle */
594   -.triangle-border.right:before {
595   - top:10px; /* controls vertical position */
596   - bottom:auto;
597   - left:auto;
598   - right:-30px; /* value = - border-left-width - border-right-width */
599   - border-width:15px 0 15px 30px;
600   - border-color:transparent #5a8f00;
601   -}
602   -
603   -/* creates the smaller triangle */
604   -.triangle-border.right:after {
605   - top:16px; /* value = (:before top) + (:before border-top) - (:after border-top) */
606   - bottom:auto;
607   - left:auto;
608   - right:-21px; /* value = - border-left-width - border-right-width */
609   - border-width:9px 0 9px 21px;
610   - border-color:transparent #fff;
611   -}
612   -
613   -
614   -/* ============================================================================================================================
615   -== SPEECH BUBBLE ICON
616   -** ============================================================================================================================ */
617   -
618   -.example-commentheading {
619   - position:relative;
620   - padding:0;
621   - color:#b513af;
622   -}
623   -
624   -/* creates the rectangle */
625   -.example-commentheading:before {
626   - content:"";
627   - position:absolute;
628   - top:9px;
629   - left:-25px;
630   - width:15px;
631   - height:10px;
632   - background:#b513af;
633   - /* css3 */
634   - -webkit-border-radius:3px;
635   - -moz-border-radius:3px;
636   - border-radius:3px;
637   -}
638   -
639   -/* creates the triangle */
640   -.example-commentheading:after {
641   - content:"";
642   - position:absolute;
643   - top:15px;
644   - left:-19px;
645   - border:4px solid transparent;
646   - border-left-color:#b513af;
647   - /* reduce the damage in FF3.0 */
648   - display:block;
649   - width:0;
650   -}
651   -
652   -
653   -/* ============================================================================================================================
654   -== BLOCKQUOTE WITH RIGHT-ANGLED TRIANGLE
655   -** ============================================================================================================================ */
656   -
657   -.example-right {
658   - position:relative;
659   - padding:15px 30px;
660   - margin:0;
661   - color:#fff;
662   - background:#5a8f00; /* default background for browsers without gradient support */
663   - /* css3 */
664   - background:-webkit-gradient(linear, 0 0, 0 100%, from(#b8db29), to(#5a8f00));
665   - background:-moz-linear-gradient(#b8db29, #5a8f00);
666   - background:-o-linear-gradient(#b8db29, #5a8f00);
667   - background:linear-gradient(#b8db29, #5a8f00);
668   - -webkit-border-radius:10px;
669   - -moz-border-radius:10px;
670   - border-radius:10px;
671   -}
672   -
673   -/* display of quote author (alternatively use a class on the element following the blockquote) */
674   -.example-right + p {margin:15px 0 2em 85px; font-style:italic;}
675   -
676   -/* creates the triangle */
677   -.example-right:after {
678   - content:"";
679   - position:absolute;
680   - bottom:-50px;
681   - left:50px;
682   - border-width:0 20px 50px 0px;
683   - border-style:solid;
684   - border-color:transparent #5a8f00;
685   - /* reduce the damage in FF3.0 */
686   - display:block;
687   - width:0;
688   -}
689   -
690   -
691   -/* ============================================================================================================================
692   -== BLOCKQUOTE WITH OBTUSE TRIANGLE
693   -** ============================================================================================================================ */
694   -
695   -.example-obtuse {
696   - position:relative;
697   - padding:15px 30px;
698   - margin:0;
699   - color:#000;
700   - background:#f3961c; /* default background for browsers without gradient support */
701   - /* css3 */
702   - background:-webkit-gradient(linear, 0 0, 0 100%, from(#f9d835), to(#f3961c));
703   - background:-moz-linear-gradient(#f9d835, #f3961c);
704   - background:-o-linear-gradient(#f9d835, #f3961c);
705   - background:linear-gradient(#f9d835, #f3961c);
706   - /* Using longhand to avoid inconsistencies between Safari 4 and Chrome 4 */
707   - -webkit-border-top-left-radius:25px 50px;
708   - -webkit-border-top-right-radius:25px 50px;
709   - -webkit-border-bottom-right-radius:25px 50px;
710   - -webkit-border-bottom-left-radius:25px 50px;
711   - -moz-border-radius:25px / 50px;
712   - border-radius:25px / 50px;
713   -}
714   -
715   -/* display of quote author (alternatively use a class on the element following the blockquote) */
716   -.example-obtuse + p {margin:10px 150px 2em 0; text-align:right; font-style:italic;}
717   -
718   -/* creates the larger triangle */
719   -.example-obtuse:before {
720   - content:"";
721   - position:absolute;
722   - bottom:-30px;
723   - right:80px;
724   - border-width:0 0 30px 50px;
725   - border-style:solid;
726   - border-color:transparent #f3961c;
727   - /* reduce the damage in FF3.0 */
728   - display:block;
729   - width:0;
730   -}
731   -
732   -/* creates the smaller triangle */
733   -.example-obtuse:after {
734   - content:"";
735   - position:absolute;
736   - bottom:-30px;
737   - right:110px;
738   - border-width:0 0 30px 20px;
739   - border-style:solid;
740   - border-color:transparent #fff;
741   - /* reduce the damage in FF3.0 */
742   - display:block;
743   - width:0;
744   -}
745   -
746   -
747   -/* ============================================================================================================================
748   -== TWITTER
749   -** ============================================================================================================================ */
750   -
751   -.example-twitter {
752   - position:relative;
753   - padding:15px;
754   - margin:100px 0 0.5em;
755   - color:#333;
756   - background:#eee;
757   - /* css3 */
758   - -webkit-border-radius:10px;
759   - -moz-border-radius:10px;
760   - border-radius:10px;
761   -}
762   -
763   -.example-twitter p {font-size:28px; line-height:1.25em;}
764   -
765   -/* this isn't necessary, just saves me having to edit the HTML of the demo */
766   -.example-twitter:before {
767   - content:url(twitter-logo.gif);
768   - position:absolute;
769   - top:-60px;
770   - left:0;
771   - width:155px;
772   - height:36px;
773   - /* reduce the damage in FF3.0 */
774   - display:block;
775   -}
776   -
777   -/* creates the triangle */
778   -.example-twitter:after {
779   - content:"";
780   - position:absolute;
781   - top:-30px;
782   - left:50px;
783   - border:15px solid transparent;
784   - border-bottom-color:#eee;
785   - /* reduce the damage in FF3.0 */
786   - display:block;
787   - width:0;
788   -}
789   -
790   -/* display of quote author (alternatively use a class on the element following the blockquote) */
791   -.example-twitter + p {padding-left:15px; font:14px Arial, sans-serif;}
792   -
793   -
794   -/* ============================================================================================================================
795   -== NUMBER
796   -** ============================================================================================================================ */
797   -
798   -.example-number {
799   - position:relative;
800   - width:200px;
801   - height:200px;
802   - margin:50px 0 200px;
803   - text-align:center;
804   - font:140px/200px Arial, sans-serif;
805   - color:#fff;
806   - background:#C91F2C;
807   -}
808   -
809   -/* creates the larger triangle */
810   -.example-number:before {
811   - content:"";
812   - position:absolute;
813   - bottom:-140px;
814   - right:0;
815   - border-width:0 0 140px 140px;
816   - border-style:solid;
817   - border-color:transparent #C91F2C;
818   -}
819   -
820   -/* creates the larger triangle */
821   -.example-number:after {
822   - content:"";
823   - position:absolute;
824   - bottom:-140px;
825   - right:85px;
826   - border-width:0 0 140px 55px;
827   - border-style:solid;
828   - border-color:transparent #fff;
829   -}
830   -
831   -
832   -/* ============================================================================================================================
833   -== PINCHED SPEECH BUBBLE (more CSS3)
834   -** ============================================================================================================================ */
835   -
836   -.pinched {
837   - position:relative;
838   - padding:15px;
839   - margin:50px 0 3em;
840   - text-align:center;
841   - color:#fff;
842   - background:#333;
843   - /* css3 */
844   - -webkit-border-radius:10px;
845   - -moz-border-radius:10px;
846   - border-radius:10px;
847   -}
848   -
849   -/* creates a rectangle of the colour wanted for the pointy bit */
850   -.pinched:before {
851   - content:"";
852   - position:absolute;
853   - top:-20px;
854   - left:50%;
855   - width:100px;
856   - height:20px;
857   - margin:0 0 0 -50px;
858   - background:#333;
859   -}
860   -
861   -/* creates a rounded rectangle to cover part of the rectangle generated above */
862   -.pinched:after {
863   - content:"";
864   - position:absolute;
865   - top:-20px;
866   - left:0;
867   - width:50%;
868   - height:20px;
869   - background:#fff;
870   - /* css3 */
871   - -webkit-border-bottom-right-radius:15px;
872   - -moz-border-radius-bottomright:15px;
873   - border-bottom-right-radius:15px;
874   -}
875   -
876   -/* creates the other rounded rectangle */
877   -.pinched > :first-child:before {
878   - content:"";
879   - position:absolute;
880   - top:-20px;
881   - right:0;
882   - width:50%;
883   - height:20px;
884   - background:#fff;
885   - /* css3 */
886   - -webkit-border-bottom-left-radius:15px;
887   - -moz-border-radius-bottomleft:15px;
888   - border-bottom-left-radius:15px;
889   -}
890   -
891   -
892   -/* ============================================================================================================================
893   -== OVAL SPEECH BUBBLE (more CSS3)
894   -** ============================================================================================================================ */
895   -
896   -.oval-speech {
897   - position:relative;
898   - width:270px;
899   - padding:50px 40px;
900   - margin:1em auto 50px;
901   - text-align:center;
902   - color:#fff;
903   - background:#5a8f00;
904   - /* css3 */
905   - background:-webkit-gradient(linear, 0 0, 0 100%, from(#b8db29), to(#5a8f00));
906   - background:-moz-linear-gradient(#b8db29, #5a8f00);
907   - background:-o-linear-gradient(#b8db29, #5a8f00);
908   - background:linear-gradient(#b8db29, #5a8f00);
909   - /*
910   - NOTES:
911   - -webkit-border-radius:220px 120px; // produces oval in safari 4 and chrome 4
912   - -webkit-border-radius:220px / 120px; // produces oval in chrome 4 (again!) but not supported in safari 4
913   - Not correct application of the current spec, therefore, using longhand to avoid future problems with webkit corrects this
914   - */
915   - -webkit-border-top-left-radius:220px 120px;
916   - -webkit-border-top-right-radius:220px 120px;
917   - -webkit-border-bottom-right-radius:220px 120px;
918   - -webkit-border-bottom-left-radius:220px 120px;
919   - -moz-border-radius:220px / 120px;
920   - border-radius:220px / 120px;
921   -}
922   -
923   -.oval-speech p {font-size:1.25em;}
924   -
925   -/* creates part of the curve */
926   -.oval-speech:before {
927   - content:"";
928   - position:absolute;
929   - z-index:-1;
930   - bottom:-30px;
931   - right:50%;
932   - height:30px;
933   - border-right:60px solid #5a8f00;
934   - background:#5a8f00; /* need this for webkit - bug in handling of border-radius */
935   - /* css3 */
936   - -webkit-border-bottom-right-radius:80px 50px;
937   - -moz-border-radius-bottomright:80px 50px;
938   - border-bottom-right-radius:80px 50px;
939   - /* using translate to avoid undesired appearance in CSS2.1-capabable but CSS3-incapable browsers */
940   - -webkit-transform:translate(0, -2px);
941   - -moz-transform:translate(0, -2px);
942   - -ms-transform:translate(0, -2px);
943   - -o-transform:translate(0, -2px);
944   - transform:translate(0, -2px);
945   -}
946   -
947   -/* creates part of the curved pointy bit */
948   -.oval-speech:after {
949   - content:"";
950   - position:absolute;
951   - z-index:-1;
952   - bottom:-30px;
953   - right:50%;
954   - width:60px;
955   - height:30px;
956   - background:#fff;
957   - /* css3 */
958   - -webkit-border-bottom-right-radius:40px 50px;
959   - -moz-border-radius-bottomright:40px 50px;
960   - border-bottom-right-radius:40px 50px;
961   - /* using translate to avoid undesired appearance in CSS2.1-capabable but CSS3-incapable browsers */
962   - -webkit-transform:translate(-30px, -2px);
963   - -moz-transform:translate(-30px, -2px);
964   - -ms-transform:translate(-30px, -2px);
965   - -o-transform:translate(-30px, -2px);
966   - transform:translate(-30px, -2px);
967   -}
968   -
969   -
970   -/* ============================================================================================================================
971   -== OVAL THOUGHT BUBBLE (more CSS3)
972   -** ============================================================================================================================ */
973   -
974   -.oval-thought {
975   - position:relative;
976   - width:270px;
977   - padding:50px 40px;
978   - margin:1em auto 80px;
979   - text-align:center;
980   - color:#fff;
981   - background:#075698;
982   - /* css3 */
983   - background:-webkit-gradient(linear, 0 0, 0 100%, from(#2e88c4), to(#075698));
984   - background:-moz-linear-gradient(#2e88c4, #075698);
985   - background:-o-linear-gradient(#2e88c4, #075698);
986   - background:linear-gradient(#2e88c4, #075698);
987   - /*
988   - NOTES:
989   - -webkit-border-radius:220px 120px; // produces oval in safari 4 and chrome 4
990   - -webkit-border-radius:220px / 120px; // produces oval in chrome 4 (again!) but not supported in safari 4
991   - Not correct application of the current spec, therefore, using longhand to avoid future problems with webkit corrects this
992   - */
993   - -webkit-border-top-left-radius:220px 120px;
994   - -webkit-border-top-right-radius:220px 120px;
995   - -webkit-border-bottom-right-radius:220px 120px;
996   - -webkit-border-bottom-left-radius:220px 120px;
997   - -moz-border-radius:220px / 120px;
998   - border-radius:220px / 120px;
999   -}
1000   -
1001   -.oval-thought p {font-size:1.25em;}
1002   -
1003   -/* creates the larger circle */
1004   -.oval-thought:before {
1005   - content:"";
1006   - position:absolute;
1007   - bottom:-20px;
1008   - left:50px;
1009   - width:30px;
1010   - height:30px;
1011   - background:#075698;
1012   - /* css3 */
1013   - -webkit-border-radius:30px;
1014   - -moz-border-radius:30px;
1015   - border-radius:30px;
1016   -}
1017   -
1018   -/* creates the smaller circle */
1019   -.oval-thought:after {
1020   - content:"";
1021   - position:absolute;
1022   - bottom:-30px;
1023   - left:30px;
1024   - width:15px;
1025   - height:15px;
1026   - background:#075698;
1027   - /* css3 */
1028   - -webkit-border-radius:15px;
1029   - -moz-border-radius:15px;
1030   - border-radius:15px;
1031   -}
1032   -
1033   -/* ============================================================================================================================
1034   -== OVAL SPEECH BUBBLE WITH QUOTATION MARKS (more CSS3)
1035   -** ============================================================================================================================ */
1036   -
1037   -.oval-quotes {
1038   - position:relative;
1039   - width:400px;
1040   - height:350px;
1041   - margin:2em auto 10px;
1042   - color:#000;
1043   - background:#ffed26;
1044   - /* css3 */
1045   - /*
1046   - NOTES:
1047   - -webkit-border-radius:Apx Bpx; // produces oval in safari 4 and chrome 4
1048   - -webkit-border-radius:Apx / Bpx; // produces oval in chrome 4 (again!) but not supported in safari 4
1049   - Not correct application of the current spec, therefore, using longhand to avoid future problems with webkit corrects this
1050   - */
1051   - -webkit-border-top-left-radius:400px 350px;
1052   - -webkit-border-top-right-radius:400px 350px;
1053   - -webkit-border-bottom-right-radius:400px 350px;
1054   - -webkit-border-bottom-left-radius:400px 350px;
1055   - -moz-border-radius:400px / 350px;
1056   - border-radius:400px / 350px;
1057   -}
1058   -
1059   -/* creates opening quotation mark */
1060   -.oval-quotes:before {
1061   - content:"\201C";
1062   - position:absolute;
1063   - z-index:1;
1064   - top:20px;
1065   - left:20px;
1066   - font:80px/1 Georgia, serif;
1067   - color:#ffed26;
1068   -}
1069   -
1070   -/* creates closing quotation mark */
1071   -.oval-quotes:after {
1072   - content:"\201D";
1073   - position:absolute;
1074   - z-index:1;
1075   - bottom:0;
1076   - right:20px;
1077   - font:80px/0.25 Georgia, serif;
1078   - color:#ffed26;
1079   -}
1080   -
1081   -.oval-quotes p {
1082   - width:250px;
1083   - height:250px;
1084   - padding:50px 0 0;
1085   - margin:0 auto;
1086   - text-align:center;
1087   - font-size:35px;
1088   -}
1089   -
1090   -/* creates smaller curve */
1091   -.oval-quotes p:before {
1092   - content:"";
1093   - position:absolute;
1094   - z-index:-1;
1095   - bottom:-30px;
1096   - right:55%;
1097   - width:180px; /* wider than necessary to make it look a bit better in IE8 */
1098   - height:60px;
1099   - background:#fff; /* need this for webkit - bug in handling of border-radius */
1100   - /* css3 */
1101   - -webkit-border-bottom-right-radius:40px 50px;
1102   - -moz-border-radius-bottomright:40px 50px;
1103   - border-bottom-right-radius:40px 50px;
1104   - /* using translate to avoid undesired appearance in CSS2.1-capabable but CSS3-incapable browsers */
1105   - -webkit-transform:translate(-30px, -2px);
1106   - -moz-transform:translate(-30px, -2px);
1107   - -ms-transform:translate(-30px, -2px);
1108   - -o-transform:translate(-30px, -2px);
1109   - transform:translate(-30px, -2px);
1110   -}
1111   -
1112   -/* creates larger curve */
1113   -.oval-quotes p:after {
1114   - content:"";
1115   - position:absolute;
1116   - z-index:-2;
1117   - bottom:-30px;
1118   - right:25%;
1119   - height:80px;
1120   - border-right:200px solid #ffed26;
1121   - background:#ffed26; /* need this for webkit - bug in handling of border-radius */
1122   - /* css3 */
1123   - -webkit-border-bottom-right-radius:200px 100px;
1124   - -moz-border-radius-bottomright:200px 100px;
1125   - border-bottom-right-radius:200px 100px;
1126   - /* using translate to avoid undesired appearance in CSS2.1-capabable but CSS3-incapable browsers */
1127   - -webkit-transform:translate(0, -2px);
1128   - -moz-transform:translate(0, -2px);
1129   - -ms-transform:translate(0, -2px);
1130   - -o-transform:translate(0, -2px);
1131   - transform:translate(0, -2px);
1132   - /* reduce the damage in FF3.0 */
1133   - display:block;
1134   - width:0;
1135   -}
1136   -
1137   -.oval-quotes + p {
1138   - position:relative; /* part of the IE8 width compromise */
1139   - width:150px;
1140   - margin:0 0 2em;
1141   - font-size:18px;
1142   - font-weight:bold;
1143   -}
1144   -
1145   -
1146   -/* ============================================================================================================================
1147   -== RECTANGLE-BORDER STYLE WITH CURVE
1148   -** ============================================================================================================================ */
1149   -
1150   -.rectangle-speech-border {
1151   - position:relative;
1152   - padding:50px 15px;
1153   - margin:1em 0 3em;
1154   - border:10px solid #5a8f00;
1155   - text-align:center;
1156   - color:#333;
1157   - background:#fff;
1158   - /* css3 */
1159   - -webkit-border-radius:20px;
1160   - -moz-border-radius:20px;
1161   - border-radius:20px;
1162   -}
1163   -
1164   -/* creates larger curve */
1165   -.rectangle-speech-border:before {
1166   - content:"";
1167   - position:absolute;
1168   - z-index:10;
1169   - bottom:-40px;
1170   - left:50px;
1171   - width:50px;
1172   - height:30px;
1173   - border-style:solid;
1174   - border-width:0 10px 10px 0;
1175   - border-color:#5a8f00;
1176   - background:transparent;
1177   - /* css3 */
1178   - -webkit-border-bottom-right-radius:80px 50px;
1179   - -moz-border-radius-bottomright:80px 50px;
1180   - border-bottom-right-radius:80px 50px;
1181   - /* reduce the damage in FF3.0 */
1182   - display:block;
1183   -}
1184   -
1185   -/* creates smaller curve */
1186   -.rectangle-speech-border:after {
1187   - content:"";
1188   - position:absolute;
1189   - z-index:10;
1190   - bottom:-40px;
1191   - left:50px;
1192   - width:20px;
1193   - height:30px;
1194   - border-style:solid;
1195   - border-width:0 10px 10px 0;
1196   - border-color:#5a8f00;
1197   - background:transparent;
1198   - /* css3 */
1199   - -webkit-border-bottom-right-radius:40px 50px;
1200   - -moz-border-radius-bottomright:40px 50px;
1201   - border-bottom-right-radius:40px 50px;
1202   - /* reduce the damage in FF3.0 */
1203   - display:block;
1204   -}
1205   -
1206   -/* creates a small circle to produce a rounded point where the two curves meet */
1207   -.rectangle-speech-border > :first-child:before {
1208   - content:"";
1209   - position:absolute;
1210   - bottom:-40px;
1211   - left:45px;
1212   - width:10px;
1213   - height:10px;
1214   - background:#5a8f00;
1215   - /* css3 */
1216   - -webkit-border-radius:10px;
1217   - -moz-border-radius:10px;
1218   - border-radius:10px;
1219   -}
1220   -
1221   -/* creates a white rectangle to cover part of the oval border*/
1222   -.rectangle-speech-border > :first-child:after {
1223   - content:"";
1224   - position:absolute;
1225   - bottom:-10px;
1226   - left:76px;
1227   - width:24px;
1228   - height:15px;
1229   - background:#fff;
1230   -}
1231   -
1232   -/* ============================================================================================================================
1233   -== OVER SPEECH BUBBLE, EMPTY, WITH BORDER (more CSS3)
1234   -** ============================================================================================================================ */
1235   -
1236   -.oval-speech-border {
1237   - position:relative;
1238   - padding:70px 30px;
1239   - margin:1em auto 60px;
1240   - border:10px solid #f3961c;
1241   - text-align:center;
1242   - color:#333;
1243   - background:#fff;
1244   - /* css3 */
1245   - /*
1246   - NOTES:
1247   - -webkit-border-radius:240px 140px; // produces oval in safari 4 and chrome 4
1248   - -webkit-border-radius:240px / 140px; // produces oval in chrome 4 (again!) but not supported in safari 4
1249   - Not correct application of the current spec, therefore, using longhand to avoid future problems with webkit corrects this
1250   - */
1251   - -webkit-border-top-left-radius:240px 140px;
1252   - -webkit-border-top-right-radius:240px 140px;
1253   - -webkit-border-bottom-right-radius:240px 140px;
1254   - -webkit-border-bottom-left-radius:240px 140px;
1255   - -moz-border-radius:240px / 140px;
1256   - border-radius:240px / 140px;
1257   -}
1258   -
1259   -/* creates larger curve */
1260   -.oval-speech-border:before {
1261   - content:"";
1262   - position:absolute;
1263   - z-index:2;
1264   - bottom:-40px;
1265   - right:50%;
1266   - width:50px;
1267   - height:30px;
1268   - border-style:solid;
1269   - border-width:0 10px 10px 0;
1270   - border-color:#f3961c;
1271   - margin-right:-10px;
1272   - background:transparent;
1273   - /* css3 */
1274   - -webkit-border-bottom-right-radius:80px 50px;
1275   - -moz-border-radius-bottomright:80px 50px;
1276   - border-bottom-right-radius:80px 50px;
1277   - /* reduce the damage in FF3.0 */
1278   - display:block;
1279   -}
1280   -
1281   -/* creates smaller curve */
1282   -.oval-speech-border:after {
1283   - content:"";
1284   - position:absolute;
1285   - z-index:2;
1286   - bottom:-40px;
1287   - right:50%;
1288   - width:20px;
1289   - height:31px;
1290   - border-style:solid;
1291   - border-width:0 10px 10px 0;
1292   - border-color:#f3961c;
1293   - margin-right:20px;
1294   - background:transparent;
1295   - /* css3 */
1296   - -webkit-border-bottom-right-radius:40px 50px;
1297   - -moz-border-radius-bottomright:40px 50px;
1298   - border-bottom-right-radius:40px 50px;
1299   - /* reduce the damage in FF3.0 */
1300   - display:block;
1301   -}
1302   -
1303   -/* creates a small circle to produce a rounded point where the two curves meet */
1304   -.oval-speech-border > :first-child:before {
1305   - content:"";
1306   - position:absolute;
1307   - z-index:1;
1308   - bottom:-40px;
1309   - right:50%;
1310   - width:10px;
1311   - height:10px;
1312   - margin-right:45px;
1313   - background:#f3961c;
1314   - /* css3 */
1315   - -webkit-border-radius:10px;
1316   - -moz-border-radius:10px;
1317   - border-radius:10px;
1318   -}
1319   -
1320   -/* creates a white rectangle to cover part of the oval border*/
1321   -.oval-speech-border > :first-child:after {
1322   - content:"";
1323   - position:absolute;
1324   - z-index:1;
1325   - bottom:-10px;
1326   - right:50%;
1327   - width:30px;
1328   - height:15px;
1329   - background:#fff;
1330   -}
1331   -
1332   -/* ============================================================================================================================
1333   -== OVER THOUGHT BUBBLE, EMPTY, WITH BORDER (more CSS3)
1334   -** ============================================================================================================================ */
1335   -
1336   -.oval-thought-border {
1337   - position:relative;
1338   - padding:70px 30px;
1339   - margin:1em auto 80px;
1340   - border:10px solid #c81e2b;
1341   - text-align:center;
1342   - color:#333;
1343   - background:#fff;
1344   - /* css3 */
1345   - /*
1346   - NOTES:
1347   - -webkit-border-radius:240px 140px; // produces oval in safari 4 and chrome 4
1348   - -webkit-border-radius:240px / 140px; // produces oval in chrome 4 (again!) but not supported in safari 4
1349   - Not correct application of the current spec, therefore, using longhand to avoid future problems with webkit corrects this
1350   - */
1351   - -webkit-border-top-left-radius:240px 140px;
1352   - -webkit-border-top-right-radius:240px 140px;
1353   - -webkit-border-bottom-right-radius:240px 140px;
1354   - -webkit-border-bottom-left-radius:240px 140px;
1355   - -moz-border-radius:240px / 140px;
1356   - border-radius:240px / 140px;
1357   -}
1358   -
1359   -/* creates the larger circle */
1360   -.oval-thought-border:before {
1361   - content:"";
1362   - position:absolute;
1363   - z-index:10;
1364   - bottom:-40px;
1365   - right:100px;
1366   - width:50px;
1367   - height:50px;
1368   - border:10px solid #c81e2b;
1369   - background:#fff;
1370   - /* css3 */
1371   - -webkit-border-radius:50px;
1372   - -moz-border-radius:50px;
1373   - border-radius:50px;
1374   - /* reduce the damage in FF3.0 */
1375   - display:block;
1376   -}
1377   -
1378   -/* creates the smaller circle */
1379   -.oval-thought-border:after {
1380   - content:"";
1381   - position:absolute;
1382   - z-index:10;
1383   - bottom:-60px;
1384   - right:50px;
1385   - width:25px;
1386   - height:25px;
1387   - border:10px solid #c81e2b;
1388   - background:#fff;
1389   - /* css3 */
1390   - -webkit-border-radius:25px;
1391   - -moz-border-radius:25px;
1392   - border-radius:25px;
1393   - /* reduce the damage in FF3.0 */
1394   - display:block;
1395   -}
plugins/comment_paragraph/lab/main-base.css
plugins/comment_paragraph/lab/medium_usability.html
... ... @@ -1,87 +0,0 @@
1   -<!DOCTYPE html>
2   -<html>
3   -<head>
4   - <meta charset="utf-8">
5   - <title>Comentário em parágrafo</title>
6   - <style>
7   -
8   - .triangle-right {
9   - position:relative;
10   - padding:15px;
11   - margin:1em 0 3em;
12   - color:#fff;
13   - background:#075698; /* default background for browsers without gradient support */
14   - /* css3 */
15   - background:-webkit-gradient(linear, 0 0, 0 100%, from(#2e88c4), to(#075698));
16   - background:-moz-linear-gradient(#2e88c4, #075698);
17   - background:-o-linear-gradient(#2e88c4, #075698);
18   - background:linear-gradient(#2e88c4, #075698);
19   - -webkit-border-radius:10px;
20   - -moz-border-radius:10px;
21   - border-radius:10px;
22   - }
23   -
24   - .triangle-right:after {
25   - content: "";
26   - position: absolute;
27   - bottom: -20px;
28   - left: 50px;
29   - border-width: 20px 0 0 20px;
30   - border-style: solid;
31   - border-color: #075698 transparent;
32   - display: block;
33   - width: 0;
34   - }
35   -
36   - </style>
37   - <script src="http://code.jquery.com/jquery-1.11.1.min.js" type="text/javascript"></script>
38   - <script>
39   - jQuery(function($) {
40   - $("#comment-bubble").hide();
41   - var currentMousePos = { x: -1, y: -1 };
42   - $(document).mousemove(function(event) {
43   - currentMousePos.x = event.pageX;
44   - currentMousePos.y = event.pageY;
45   - $("#comment-bubble").css({top: event.pageY-110, left: event.pageX-70, position:'absolute'});;
46   - $("#comment-bubble").show();
47   - });
48   -
49   -
50   -
51   - });
52   - </script>
53   -
54   -
55   -</head>
56   -
57   -<body>
58   -
59   -<!-- <div class="content" >-->
60   - <div id="comment-bubble" align="center" style="width:120px" class="triangle-right" >Comentar<br>+</div>
61   -<!-- </div> -->
62   -
63   -
64   -<div class="single-text" itemprop="text">
65   - <table class="middle"><thead><tr><th scope="col"><p class="bodytext">agicC_Rua-Almirante-Mourao-de-Sa_Evandro-Veiga_01.jpg.jpg" height="387" width="620" alt=""></p></th></tr></thead><tbody><tr><td><p class="bodytext">Rua Almirante Mourão de Sá, entre Paripe e Fazenda Coutos, é um dos pontos de tensão do Subúrbio por conta da guerra do tráfico. Bairros já registraram 34 homicídios em 2014 (Foto: Evandro Veiga)</p></td></tr></tbody></table><p class="bodytext">Já passavam das 23h quando a aposentada Olindina Serra acordou assustada com o barulho de tiros disparados próximo à sua residência, na Rua 05, em Fazenda Coutos. Mesmo com o número de estampidos – seis, até onde contou –, Olindina virou para o outro lado e voltou a dormir. “Quem mora aqui já se acostumou. A gente se assusta no primeiro tiro e depois só espera terminar. É a Faixa de Gaza do Subúrbio, né? Quem não tem como mudar, tenta se acostumar”, afirma a aposentada.
66   -</p>
67   -<p class="bodytext"><br>Apesar de não haver nenhum logradouro chamado Faixa de Gaza em Salvador, o apelido é comumente utilizado por moradores para designar vias que separam áreas dominadas por grupos criminosos em conflito constante. Na lei silenciosa das Gazas espalhadas pela capital, quem mora em um lado não cruza para o outro, norma que deve ser obedecida sob pena de retaliação.
68   -</p>
69   -<p class="bodytext">&nbsp;</p><table class="left"><thead><tr><th scope="col"><p class="bodytext"><img style=" " src="uploads/RTEmagicC_tiros_suburbio.jpg.jpg" height="249" width="221" alt=""></p></th></tr></thead><tbody><tr><td><p class="bodytext">Parede com buracos de bala é sinal da<br>violência que assola o Subúrbio<br>(Foto: Evandro Veiga)</p></td></tr></tbody></table><p class="bodytext">A Gaza suburbana citada pela aposentada é a Rua Almirante Mourão de Sá, uma via com cerca de 1,5 km que separa os bairros de Paripe e Fazenda Coutos. No trecho intermediário da via, na altura da “afamada” Rua da Paz do Bate Coração, algumas casas são marcadas por pichações de facções criminosas e buracos de bala, resultado das constantes disputas entre bandidos dos dois bairros.
70   -</p>
71   -<p class="bodytext"><br>“Infelizmente, a gente tem que viver com essa situação. Basta aparecer algum desconhecido na área que os bandidos aparecem para saber quem é. Eles ficam revidando: um grupo do Bate Coração vem e assalta alguém aqui na Fazenda Coutos. Depois, um grupo daqui vai lá e atira em alguém”, conta uma moradora, sob anonimato. “Só que a população, que não tem nada a ver, fica no meio”, complementa.
72   -</p>
73   -<p class="bodytext"><br>No fim de semana, apareceu mais uma candidata a figurar como Gaza do Subúrbio: na rua Guiné, em Periperi, seis pessoas foram assassinadas. Com a chacina na Guiné, Periperi registrou 31 homicídios em 2014, passando a liderar a estatística por bairros em Salvador, à frente dos vizinhos Paripe e Lobato, ambos com 27 homicídios registrados, e empatando com São Cristóvão, onde também foram registrados 31 crimes de morte.
74   -</p>
75   -<p class="bodytext"><br><span style="font-weight: bold; ">Autoestima</span><br>A tenente Jéssica Souza, comandante da Base Comunitária de Fazenda Coutos, não gosta do apelido dado à Mourão de Sá, especialmente após o trabalho que sua equipe vem desenvolvendo na área. “Nós lutamos contra essa situação aqui, mas não gosto do termo Faixa de Gaza.
76   -</p>
77   -<p class="bodytext">Acredito que esse tipo de apelido só contribui para rebaixar a autoestima dos moradores”, diz. <br>Segundo a tenente, “quantitativamente, é visível a redução da criminalidade”, desde que a base foi instalada. “Estamos desenvolvendo a cultura de paz, projetos e ações, como a patrulha comunitária, e isso tem repercutido até mesmo do lado de lá (Paripe)”, afirma.
78   -</p>
79   -<p class="bodytext"><br>Porém, na contramão da tal “cultura de paz”, a cultura do medo tem prevalecido na vizinhança. Situação que se agravou ainda mais com o sequestro de jovens na região, ocorrido nas últimas semanas. Isso afetou, principalmente, a rotina de crianças e adolescentes. “Minha mãe me disse para não ir à escola. A gente vê o que acontece aqui, todo dia. Agora, com essa onda de sequestros, o medo aumentou ainda mais. Tem colega levando até arma para a escola”, afirma um estudante de 13 anos, que não foi à aula semana passada.
80   -</p>
81   -<p class="bodytext"><br><span style="font-weight: bold; ">Bonocô</span><br>Há quem diga que o “sistema” no Subúrbio Ferroviário é diferente, mas, ao contrário do que se pensa, as Faixas de Gaza não são exclusividade da periferia de Salvador. Na área central da cidade, a Avenida Bonocô representa a linha que separa dois dos maiores polos do tráfico de narcóticos, os bairros de Cosme de Farias e Campinas de Brotas.<br><br>A guerra entre os bairros ligados por uma passarela ganhou notoriedade após a operação que resultou na morte do traficante Tiago Guimarães Pinto, o Titanic, em fevereiro. Contudo, seis meses após a morte do chefe do tráfico de Cosme de Farias, moradores e funcionários de empresas no entorno ainda temem a travessia quando a noite se aproxima. E a maior parte das pessoas ainda vive sob a lei do silêncio. “Todo mundo aqui sabe o que acontece, mas a gente não pode ficar comentando”, explica um trabalhador.<br><br><span style="font-weight: bold; ">Guerra fria</span><br>Para o capitão Edno Amaral, da 58ª CIPM (Cosme de Farias), a intensificação do policiamento na área reduziu bastante o número de ocorrências, contudo, o medo disseminado na população nos últimos anos contribuiu para uma espécie de trauma que faz com que não se sintam à vontade para falar abertamente sobre o assunto. <br><br>“Tivemos problemas com aquele trecho, no passado, mas o que há ali hoje em dia é uma ‘guerra fria’. Os líderes do tráfico que dominavam aquela região amedrontavam os moradores. A maioria silencia para assegurar uma estada sem sustos, pois essa mesma maioria não tem condições de se mudar”, avalia o capitão.<br><br>Contudo, quem hoje percebe uma certa calmaria na Faixa de Gaza da Bonocô lembra como era o clima nos períodos de conflito aberto. “Morei em Campinas (de Brotas) por mais de 30 anos e hoje venho, de vez em quando, visitar meus filhos”, afirma o taxista Emerson Rodrigues. Segundo ele, houve um tempo em que tinha olheiros dos dois lados. “Bastava cruzar a passarela, que era voz de assalto, tiroteio. Foi por causa de situações assim que decidi me mudar”, explica. <br><br>Apesar da mudança, o taxista não conseguiu se livrar do clima de insegurança. “Saí daqui para o Imbuí e, lá perto, na Boca do Rio, tem uma Faixa de Gaza também”, aponta.<br><br><span style="font-weight: bold; ">Cessar-fogo</span><br>O trecho ao qual Emerson se refere é a altura da Avenida Jorge Amado que separa as invasões do Golfo Pérsico e Irmã Dulce. “Há algum tempo era difícil viver por aqui, não dava para pisar do lado de lá sem ser assaltado. Todo dia a gente ouvia falar de alguma morte. Graças a Deus, acalmou”, relata uma vendedora, que mora na localidade do Golfo Pérsico.<br><br>A rivalidade, mais uma vez, envolve o domínio de pontos de venda de drogas. Assim como no Subúrbio, as ações criminosas se baseavam no sistema de revide. “Estava insuportável. Aconteceram chacinas aqui, nas ruas. Durante o aniversário de uma vizinha, um grupo veio do outro lado e incendiou a moto de um dos convidados. A gente sentia um clima de guerra na pele. Faz algum tempo que a situação melhorou, mas a fama continua”, conta uma moradora.<br><br>O major Gabriel da Silva Neto, comandante da 39ª CIPM (Boca do Rio), garante que o cessar-fogo é resultado das ações afirmativas que a Polícia Militar tem feito na região. “Temos tomado medidas preventivas e intensificamos o policiamento. As estatísticas mostram uma melhora grande. Isso também faz parte de um diálogo com a comunidade, que acaba ajudando nesse trabalho”, relata Silva Neto.
82   -</p>
83   -<p class="bodytext">&nbsp;</p><table class="contenttable"><thead><tr><th scope="col"><p class="bodytext"><img src="http://w3.c24hsttc.net/uploads/RTEmagicC_crimesnosuburbio.jpg.jpg" height="965" width="620" alt=""></p></th></tr></thead><tbody></tbody></table><p class="bodytext"><span style="font-weight: bold; ">Palestina soteropolitana também pede uma trégua</span><br>Segunda-feira da semana passada, quando o povo palestino teve uma trégua com o anúncio de cessar-fogo feito por Israel, após um mês de ataques, em uma Palestina muito distante do Oriente Médio – aqui mesmo, em Salvador – civis lamentavam mais uma baixa gerada pela guerra diária do tráfico. “A gente também precisa de trégua aqui. O clima está insustentável. Já era o tempo em que podíamos andar pelas ruas sem medo”, afirma um taxista local. <br><br>Presidente da associação comunitária Zumbi dos Palmares e morador da Palestina soteropolitana há 40 anos, José Antônio Souza afirma que o antigo conjunto de fazendas ganhou esse nome em referência às semelhanças entre a história de luta dos posseiros que formaram o bairro e o perfil aguerrido do povo palestino. “Foi por causa da luta do povo da Palestina pela sua independência e reconhecimento”, conta.<br><br> Apesar do clima interiorano e da receptividade, especialmente dos mais antigos, os relatos de medo e tensão diante dos constantes conflitos entre facções que atuam na área compõem o retrato da guerra. “O medo começa na hora de botar o pé fora de casa. Volta e meia tem um tiroteio nas baixadas. Essa semana mesmo mataram um rapaz. Um antigo vizinho teve que fugir para o interior jurado de morte pelos traficantes”, lista um morador.<br><br> Para José Antônio de Souza, da Zumbi dos Palmares, a onda de violência que tem tomado conta da Palestina nos últimos anos é um reflexo da falta de oportunidades e atrativos para os moradores, principalmente os mais jovens. “Aqui, nós não temos áreas de lazer e entretenimento. Não temos uma escola técnica que possa dar cursos e abrir as portas dos jovens. Como é que a gente quer que as coisas mudem se o poder público esquece a nossa existência?”, questiona o líder comunitário.</p>
84   - </div>
85   -</body>
86   -</html>
87   -