You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

custom.less 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // GLOBAL VALUES
  2. // --------------------------------------------------
  3. @standardGray: #ccc;
  4. @cornflower: #abd4ff;
  5. @white: #fff;
  6. // Dropdown
  7. // -------------------------
  8. @dropdownLinkBackgroundHover: @cornflower;
  9. // Navbar
  10. // -------------------------
  11. @navbarHeight: 55px;
  12. @navbarBackground: @cornflower;
  13. @navbarBackgroundHighlight: @cornflower;
  14. @navbarText: @white;
  15. @navbarLinkColor: @white;
  16. @navbarLinkColorHover: @white;
  17. @navbarLinkColorActive: @white;
  18. @navbarLinkBackgroundHover: transparent;
  19. @navbarLinkBackgroundActive: transparent;
  20. .navbar {
  21. .brand {
  22. @elementHeight: 48px;
  23. padding: 7px;
  24. }
  25. }
  26. .navbar .nav > li > a {
  27. font-size: @baseFontSize + 2;
  28. text-shadow: 0 1px 0 #6b94df;
  29. }
  30. body { padding-top: @navbarHeight + 15 } /* 60px to make the container go all the way to the bottom of the topbar */
  31. footer { margin-top: 25px; padding: 15px 0 16px; border-top: 1px solid #E5E5E5; }
  32. a:hover { text-decoration: underline !important; }
  33. em { color: #50a000; }