scaffolding.less 733 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // Layout elements that dont deserve their own file go there
  2. // -------------------------
  3. // Custom grid columns
  4. .spanHalf {
  5. width: 50%;
  6. }
  7. .spanQuarter {
  8. width: 25%;
  9. }
  10. // Footer
  11. footer {
  12. padding-top: 16px;
  13. padding-bottom: 32px;
  14. color: darken(@bodyBackground, 30%);
  15. a, a:link, a:active, a:visited {
  16. color: darken(@bodyBackground, 30%);
  17. text-decoration: underline;
  18. }
  19. a:hover {
  20. color: darken(@bodyBackground, 50%);
  21. }
  22. .go-to-top {
  23. float: right;
  24. &, &:link, &:active, &:visited {
  25. text-decoration: none;
  26. i {
  27. .opacity(40);
  28. }
  29. }
  30. &:hover {
  31. i {
  32. .opacity(65);
  33. }
  34. }
  35. }
  36. }