scaffolding.less 640 B

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