ForbodingAngel

Put this at the end of style.css

Dec 22nd, 2014
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.49 KB | None | 0 0
  1. /* Responsiveness - Make it rain */
  2.  
  3. .box h5 {
  4.     display: none;
  5. }
  6.  
  7. @media screen and (max-width: 680px){
  8.     .inner .right_side figure {
  9.         float: none;
  10.     }
  11.  
  12.     .boxer .box {
  13.         display: block;
  14.     }
  15.  
  16.     .box-row-header {
  17.         display: none;
  18.     }
  19.  
  20.     .box-row {
  21.         border: 1px solid #ccc;
  22.     }
  23.  
  24.     .box h5 {
  25.         display: block;
  26.  
  27.         background-color: #aaa;
  28.         text-align: center;
  29.         font-weight: bold;
  30.         color: #fff !important;
  31.         text-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
  32.         padding: 5px 5px 5px 5px;
  33.     }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment