Advertisement
Guest User

Untitled

a guest
Nov 25th, 2015
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.60 KB | None | 0 0
  1. #gainzlist {
  2.   margin: 0;
  3.   padding: 0;
  4.  
  5.   > li {
  6.     list-style: none;
  7.     margin: 20px 0 0 0;
  8.     padding: 12px 0;
  9.     background-color: $gainzWhite;
  10.     border: 3px solid $gainzWhite;
  11.     transition: 600ms;
  12.  
  13.     &:first-child {
  14.       margin: 0;
  15.     }
  16.  
  17.     &:hover {
  18.       border-color: darken($gainzWhiteDark, 5%);
  19.     }
  20.   }
  21.  
  22.   .title {
  23.     font-size: 1.5em;
  24.     color: $gainzBlue;
  25.  
  26.     > small {
  27.       font-size: 0.6em;
  28.       display: block;
  29.       margin-top: -5px;
  30.       color: lighten($gainzGrey, 60%);
  31.       > span {
  32.         color: lighten($gainzGrey, 40%);
  33.       }
  34.     }
  35.   }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement