ForbodingAngel

Untitled

Mar 24th, 2014
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. .container {
  2.  
  3. .quick_links {
  4. @include clearfix;
  5. clear: both;
  6.  
  7. .quick_link {
  8. @include span-columns(4);
  9. @include omega(3n);
  10. border: 1px solid $darkgray;
  11. border-radius: 3px;
  12. text-align: center;
  13. padding: 10px;
  14.  
  15. h3 {
  16. margin-bottom: 0px;
  17. margin-top: 0px;
  18. }
  19.  
  20. h4 {
  21. margin-bottom: 0px;
  22. margin-top: 0px;
  23. }
  24.  
  25. a {
  26. background-color: $blue;
  27. padding: 10px;
  28. color: $white;
  29. display: inline-block;
  30. width: 100%;
  31. border-radius: 3px;
  32. &:hover {
  33. background-color: $darkblue;
  34. }
  35. }
  36. }
  37.  
  38. @include media($tablet) {
  39. @include span-columns(8);
  40.  
  41. display: block;
  42. float: none;
  43. }
  44.  
  45. }
  46.  
  47.  
  48. .aside_column {
  49.  
  50. .quick_links {
  51.  
  52. .quick_link {
  53. @include span-columns(12);
  54. margin-bottom: 20px;
  55. }
  56. }
  57. }
  58. }
Advertisement
Add Comment
Please, Sign In to add comment