footer.less 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #footer {
  2. background-color: lighten(@fa-green, 2%);
  3. border-top: 1px solid @jumbotron-border;
  4. color: mix(@jumbotron-color, @fa-green, 60%);
  5. text-shadow: 0 1px 0 rgba(0,0,0,0.15);
  6. margin-top: 60px;
  7. a {
  8. color: mix(@jumbotron-color, @fa-green, 80%);
  9. border-bottom: dotted 1px mix(@jumbotron-color, @fa-green, 60%);
  10. &:hover {
  11. color: @jumbotron-color;
  12. text-decoration: none;
  13. border-bottom: solid 1px @jumbotron-color;
  14. }
  15. }
  16. .container {
  17. padding-top: 50px;
  18. padding-bottom: 55px;
  19. }
  20. .project { margin-top: 10px; }
  21. #inventory {
  22. a {
  23. width: 220px;
  24. overflow: hidden;
  25. display: inline-block;
  26. border-bottom: inherit;
  27. margin: 0 15px 20px;
  28. }
  29. #CVADP2Y { display: inline; }
  30. }
  31. }
  32. // Sticky Footer Styles
  33. // --------------------
  34. //html, body { height: 100%; }
  35. //
  36. //#wrap {
  37. // min-height: 100%;
  38. // height: auto !important;
  39. // height: 100%;
  40. //}
  41. //
  42. //.sticky-footer();
  43. //
  44. //.sticky-footer(@footer-height: 356px, @footer-margin: 60px) {
  45. // #wrap {
  46. // margin: 0 auto -(@footer-height);
  47. // padding: 0 0 (@footer-height + @footer-margin);
  48. // }
  49. // #footer { height: @footer-height; }
  50. //}