_predefined.scss 596 B

1234567891011121314151617181920212223242526272829303132
  1. // Colors
  2. //
  3. $theme: rgba(26, 188, 156, .5);
  4. $text: #c6cddb;
  5. $light-grey: #494f5c;
  6. $dark-grey: #3B3E48;
  7. $highlight-grey: #7d828a;
  8. $midnightblue: #2c3e50;
  9. // Fonts
  10. //
  11. $fonts: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
  12. $code-fonts: consolas, Menlo, "PingFang SC", "Microsoft YaHei", monospace;
  13. // Mixins
  14. //
  15. @mixin dimmed {
  16. opacity: .6;
  17. }
  18. @mixin aTag {
  19. a {
  20. border-bottom: 2px solid $theme;
  21. padding: 1px 2px;
  22. transition-property: background-color;
  23. word-break: break-all;
  24. &:hover {
  25. background-color: $theme;
  26. }
  27. }
  28. }