_predefined.scss 740 B

1234567891011121314151617181920212223242526
  1. // Colors
  2. //
  3. $accent: #54bab9;
  4. // Fonts
  5. //
  6. $fonts: -apple-system, BlinkMacSystemFont, PingFang SC, Hiragino Sans GB, Microsoft Yahei, Arial,sans-serif;
  7. $mono-fonts: Consolas, Menlo, Monaco, "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", "YaHei Consolas Hybrid", monospace, "Segoe UI Emoji", "PingFang SC", "Microsoft YaHei";
  8. // Mixins
  9. //
  10. @mixin stylized-link {
  11. a {
  12. word-wrap: break-word;
  13. text-decoration: none;
  14. border: none;
  15. box-shadow: inset 0 -4px 0 $accent;
  16. transition-property: box-shadow;
  17. transition-duration: .1s;
  18. &:hover {
  19. box-shadow: inset 0 -1em 0 $accent;
  20. color: var(--c-txt);
  21. }
  22. }
  23. }