_core.scss 417 B

123456789101112131415161718192021222324252627282930
  1. body {
  2. background: $page-bg;
  3. color: $core-text;
  4. -webkit-font-smoothing: antialiased;
  5. -moz-osx-font-smoothing: grayscale;
  6. }
  7. a {
  8. color: $core-accent;
  9. &:hover {
  10. color: darken($core-accent, 15%);
  11. }
  12. }
  13. pre {
  14. position: relative;
  15. }
  16. .bg {
  17. background: #fff;
  18. border: 1px solid $body-border;
  19. }
  20. b, strong {
  21. font-weight: $font-weight-bold
  22. }
  23. .default-animation {
  24. @include transition(all 0.5s ease);
  25. }