scaffolding.less 952 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. // Layout elements that dont deserve their own file go there
  2. // -------------------------
  3. // Breadcrumbs
  4. .breadcrumb {
  5. .active {
  6. color: @textColor;
  7. }
  8. &.bottom {
  9. background-color: darken(@bodyBackground, 10%);
  10. margin-top: 24px;
  11. margin-bottom: 0px;
  12. }
  13. }
  14. .page-header {
  15. .breadcrumb {
  16. background: none;
  17. padding: 0px;
  18. margin-bottom: 0px;
  19. }
  20. }
  21. // Footer
  22. footer {
  23. padding-top: 12px;
  24. padding-bottom: 32px;
  25. color: darken(@bodyBackground, 35%);
  26. a, a:link, a:active, a:visited {
  27. color: darken(@bodyBackground, 30%);
  28. text-decoration: underline;
  29. }
  30. a:hover {
  31. color: darken(@bodyBackground, 50%);
  32. }
  33. .go-to-top {
  34. float: right;
  35. &, &:link, &:active, &:visited {
  36. text-decoration: none;
  37. i {
  38. .opacity(40);
  39. }
  40. }
  41. &:hover {
  42. i {
  43. .opacity(65);
  44. }
  45. }
  46. }
  47. }