Advertisement
srikat

Untitled

May 24th, 2013
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.52 KB | None | 0 0
  1. /* ================== */
  2. /* = Sermon Archive = */
  3. /* ================== */
  4. .home .sermon-archive .loop-header {
  5.     margin-bottom: 2em;
  6.     padding-bottom: 1em;
  7.     border-bottom: 1px solid #D1D1D1;
  8. }
  9. .home .sermon-archive .loop-title {
  10.     margin-bottom: .4em;
  11.     color: #818181;
  12.     font-size: 56px;
  13.     line-height: 55px;
  14.     letter-spacing: -1px;
  15.     font-weight: 100;
  16. }
  17. .home .sermon-archive .podcast_link {
  18.     overflow: hidden;
  19.     display: block;
  20.     padding: 6px 30px 6px 10px;
  21.     background: #921022 url('images/itunes-podcast-link-hover.png') 96% 50% no-repeat;
  22.     border-color: #787878 #000000 #000000 #787878;
  23.     -webkit-border-radius: 6px;
  24.     -moz-border-radius: 6px;
  25.     border-radius: 6px;
  26.     border-style: solid;
  27.     border-width: 1px;
  28.     color: #FFFFFF;
  29.     text-shadow: #000000 0px 1px 1px;
  30.     text-decoration: none;
  31.     -webkit-box-shadow: inset #1C0306 0 0 12px;
  32.     -moz-box-shadow: inset #1C0306 0 0 12px;
  33.     -o-box-shadow: inset #1C0306 0 0 12px;
  34.     box-shadow: inset #1C0306 0 0 12px;
  35. }
  36. .home .sermon-archive .podcast_link:hover {
  37.     background: #212121 url('images/itunes-podcast-link.png') 96% 50% no-repeat;
  38.     background: url('images/itunes-podcast-link.png') 96% 50% no-repeat,
  39.                     -webkit-gradient(linear, left top, left bottom, from( #4F4F4F ), color-stop( 1%, #d0d0d0 ),  color-stop( 1%, #393939 ), color-stop( 50%, #393939 ), color-stop( 50%, #393939 ), to( #212121 )); /* Safari */
  40.     background: url('images/itunes-podcast-link.png') 96% 50% no-repeat,
  41.                     -webkit-linear-gradient(#4F4F4F, #d0d0d0 1px, #393939 1px, #393939 50%, #323232 50%, #212121); /* Chrome */
  42.     background: url('images/itunes-podcast-link.png') 96% 50% no-repeat,
  43.                     -moz-linear-gradient(#4F4F4F, #d0d0d0 1px, #393939 1px, #393939 50%, #323232 50%, #212121);
  44.     background: url('images/itunes-podcast-link.png') 96% 50% no-repeat,
  45.                     linear-gradient(#4F4F4F, #d0d0d0 1px, #393939 1px, #393939 50%, #323232 50%, #212121);
  46. }
  47. .home .sermon {
  48.     clear: both;
  49.     overflow: hidden;
  50.     border-bottom: 1px solid #D1D1D1;
  51.     padding-bottom: 1em;
  52. }
  53.  
  54. .home .sermon .sermon-block-wrapper.image {
  55.     position: relative;
  56.     z-index: 1;
  57.     width: 30%;
  58.     max-width: 200px;
  59.     padding: 5px 5px 2px;
  60.     background-color: #F9F9F9;
  61.     border: 1px solid #EEEEEE;
  62.     box-shadow: #AAAAAA 1px 1px 2px;
  63. }
  64. .home .sermon .image img {
  65.     margin: 0;
  66.     width: 100%;
  67.     max-width: 200px;
  68.     height: auto;
  69.     padding: 0;
  70.     border: 0;
  71. }
  72. .home .sermon .sermon-block-wrapper.title-excerpt {
  73.     width: 40%;
  74. }
  75. .home .sermon .entry-header {
  76.     clear: none;
  77. }
  78. .home .sermon .entry-title {
  79.     padding: 0 15px;
  80.     clear: none;
  81.     font-size: 16px;
  82.     line-height: 22px;
  83.     text-transform: uppercase;
  84. }
  85. .home .sermon .entry-content {
  86.     clear: none;
  87.     margin-top: 0;
  88.     padding: 0 15px;
  89. }
  90. .home .sermon .entry-content p {
  91.     margin-top: 0;
  92. }
  93. .home .sermon .date-tags {
  94.     width: 20%;
  95. }
  96. .home .sermon .entry-meta.date {
  97.     color: #444444;
  98.     font-weight: bold;
  99. }
  100. .home .sermon .entry-meta.sermon-tags a {
  101.     display: inline-block;
  102.     margin: 3px 5px 3px 0;
  103.     padding: 2px 5px;
  104.     background: #F2E1E2;
  105.     color: #313131;
  106.     font-size: 11px;
  107.     -webkit-border-radius: 6px;
  108.     -moz-border-radius: 6px;
  109.     border-radius: 6px;
  110. }
  111. .home .sermon .entry-meta.sermon-tags a:hover {
  112.     background: #C5B8B8;
  113.     color: #FFFFFF;
  114. }
  115. .home .sermon .entry-meta.sermon-mp3-link a {
  116.     display: block;
  117.     width: 52px;
  118.     height: 52px;
  119.     margin: 0 auto;
  120.     background: transparent url('images/mp3-play-link.png') no-repeat scroll center center;
  121.     text-indent: -9999px;
  122. }
  123. .home .sermon .entry-meta.sermon-mp3-link h3 {
  124.     text-transform: uppercase;
  125.     color: #818181;
  126.     font-size: 16px;
  127.     margin: 0 0 10px;
  128. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement