Advertisement
Guest User

here you go

a guest
Apr 7th, 2013
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.96 KB | None | 0 0
  1.  
  2. /*| --------------------------------------------------------
  3. /*
  4.  | --------------------------------------------------------
  5.  | File        : css-front.css
  6.  | Project     : Special Recent Posts PRO Edition plugin for Wordpress
  7.  | Version     : 2.5.2
  8.  | Description : Main stylesheet.
  9.  | Author      : Luca Grandicelli
  10.  | Author URL  : http://www.lucagrandicelli.com
  11.  | Plugin URL  : http://www.specialrecentposts.com
  12.  | Copyright (C) 2011-2012 Luca Grandicelli
  13.  | --------------------------------------------------------
  14.  
  15.  | ----------------------------------------
  16.  | General Section
  17.  | ----------------------------------------
  18.  
  19.  | - ATTENTION IE users: The following rules are only compatible with IE8+
  20.  | - Please consider to specify custom CSS rules to support previous IE versions.
  21.  | - In order to mantain a minimum compatibnility with IE7, a special CSS file is stored at special-recent-posts/css/css-ie7-fix.css.
  22.  | - Feel free to modify this file which is loaded by a conditional statement in the HTML header of the rendered webpage.
  23.  */
  24.  
  25. /* The Widget Title. */
  26. h3.srp-widget-title{
  27.     display: block;
  28.     margin-bottom: 10px;
  29. }
  30.  
  31. /* The Recent Posts Container. */
  32. div.srp-widget-container {
  33.     display: table;
  34.     clear: both;
  35. }
  36.  
  37. /* Fixing the outline on every link within the SRP container. */
  38. div.srp-widget-container a {
  39.     outline: none;
  40. }
  41.  
  42. /* The widget title link */
  43. div.srp-widget-container a.srp-widget-title-link {
  44.     outline: none;
  45. }
  46.  
  47. /* Single post entry box. */
  48. div.srp-widget-container div.srp-widget-singlepost {
  49.     padding: 0px 0px 10px 0px;
  50.     margin: 0px 0px 10px 0px;
  51.     border-bottom: 1px solid #CCCCCC;
  52.     clear: both;
  53. }
  54.  
  55. /* The single row container and */
  56. div.srp-widget-container div.srp-single-row {
  57.     display: table-cell;
  58.     vertical-align: top;
  59.     margin: 0px 0px 0px 0px;
  60.     padding: 0px 10px 0px 0px;
  61.     border: none;
  62. }
  63.  
  64. /* The single column container */
  65. div.srp-widget-container div.srp-widget-row {
  66.     clear: both;
  67.     display: block;
  68.     margin: 0px 0px 10px 0px;
  69.     padding: 0px 0px 10px 0px;
  70. }
  71.  
  72. /* The multi-column class on each post entry */
  73. div.srp-widget-container div.srp-multi-column {
  74.     display: table-cell;
  75.     vertical-align: top;
  76. }
  77.  
  78. /*
  79.  | ----------------------------------------
  80.  | Thumbnail Section
  81.  | ----------------------------------------
  82.  */
  83.  
  84. /* The thumbnail box. */
  85. div.srp-widget-container div.srp-thumbnail-box {
  86.     display: table-cell;
  87.     vertical-align: top;
  88.     padding-right: 10px;
  89. }
  90.  
  91. /* The thumbnail link. */
  92. div.srp-widget-container a.srp-widget-thmblink {
  93.     display: block;
  94. }
  95.  
  96. /* The thumbnail image. */
  97. div.srp-widget-container img.srp-widget-thmb {
  98.     max-width: none;
  99. }
  100.  
  101. div.srp-widget-container div.srp-thumbnail-box img.avatar {
  102.     max-width: none;
  103. }
  104.  
  105. /*
  106.  | ----------------------------------------
  107.  | Content Section
  108.  | ----------------------------------------
  109.  */
  110.  
  111. /* The content box. */
  112. div.srp-widget-container div.srp-content-box {
  113.     display: table-cell;
  114.     vertical-align: top;
  115. }
  116.  
  117. /* The single post title. */
  118. div.srp-widget-container h4.srp-post-title {
  119.     display: block;
  120. }
  121.  
  122. /* The single post title link. */
  123. div.srp-widget-container a.srp-post-title-link {
  124. }
  125.  
  126. /* The post excerpt. */
  127. div.srp-widget-container p.srp-widget-excerpt {
  128.     margin: 0px;
  129. }
  130.  
  131. /* The linked Excerpt */
  132. div.srp-widget-container a.srp-linked-excerpt {
  133. }
  134.  
  135. /* The stringbreak. */
  136. div.srp-widget-container span.srp-widget-stringbreak {
  137. }
  138.  
  139. /* The stringbreak link. */
  140. div.srp-widget-container a.srp-widget-stringbreak-link {
  141.     margin: 0 0 0 5px;
  142. }
  143.  
  144. /* The stringbreak link image. */
  145. div.srp-widget-container a.srp-widget-stringbreak-link-image {
  146. }
  147.  
  148. /* The post date box. */
  149. div.srp-widget-container p.srp-widget-date {
  150.     margin: 0px;
  151. }
  152.  
  153. /* The post author box. */
  154. div.srp-widget-container p.srp-widget-author {
  155.     margin: 0px;
  156. }
  157.  
  158. /* The post category box. */
  159. div.srp-widget-container p.srp-widget-category {
  160.     margin: 0px;
  161. }
  162.  
  163. /* The tags box */
  164. div.srp-widget-container p.srp-widget-tags {
  165.     margin: 0px;
  166. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement