elegant.less 659 B

123456789101112131415161718192021222324252627282930
  1. @import "../bootstrap/less/bootstrap.less";
  2. @import "../bootstrap/less/utilities.less";
  3. @import url(http://fonts.googleapis.com/css?family=Lora);
  4. @headings-font-family: Lora, Baskerville, Garamond, Georgia, 'DejaVu Serif', 'Times New Roman', Times, Serif;
  5. .mixin-no-color-no-decoration() {
  6. color: inherit;
  7. text-decoration: none;
  8. }
  9. h1, h2, h3, h4, h5, h6 {
  10. .mixin-no-color-no-decoration;
  11. small {
  12. .mixin-no-color-no-decoration;
  13. }
  14. a {
  15. .mixin-no-color-no-decoration;
  16. &:hover {
  17. .mixin-no-color-no-decoration;
  18. }
  19. &:focus {
  20. .mixin-no-color-no-decoration;
  21. }
  22. }
  23. }