Advertisement
Guest User

Untitled

a guest
Aug 26th, 2013
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.13 KB | None | 0 0
  1.  
  2. article.post:first-child {
  3.     min-height: 350px;
  4.     max-height: 350px;
  5.     min-width: 620px;
  6.     max-width: 620px;
  7.     background-color: #5F5F5F;
  8.     border: none;
  9.     margin-bottom: 40px;
  10. }
  11.  
  12. article.post:nth-child(2) {
  13.     float: left;
  14.     min-height: 170px;
  15.     max-height: 170px;
  16.     min-width: 300px;
  17.     max-width: 300px;
  18.     background-color: #3d3831;
  19. }
  20.  
  21. article.post:nth-child(3) {
  22.     float: right;
  23.     min-height: 170px;
  24.     max-height: 170px;
  25.     min-width: 300px;
  26.     max-width: 300px;
  27.     background-color: #3d3831;
  28.     margin-bottom: 80px;
  29. }
  30.  
  31. article.post:nth-child(1n+1) .entry-title a {
  32.     font-size: 25px;
  33.     position: absolute;
  34.     display: block;
  35.     min-width: 300px;
  36.     max-width: 300px;
  37.     min-height: 29px;
  38.     max-height: 29px;
  39.     margin-top: 140px;
  40.     color: #FFFFFF;
  41.     background-color: rgba(0,0,0,0.6);
  42.     margin-right: 30px;
  43.     padding-bottom: 10px;
  44.     z-index: 10;
  45. }
  46.  
  47. article.post:first-child .entry-title a {
  48.     font-size: 34px;
  49.     position: absolute;
  50.     display: block;
  51.     min-width: 600px;
  52.     max-width: 600px;
  53.     min-height: 40px;
  54.     max-height: 40px;
  55.     background-color: rgba(0,0,0,0.6);
  56.     margin-top: 300px;
  57.     padding-left: 20px;
  58.     color: #FFFFFF;
  59.     z-index: 10;
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement