index.scss 816 B

12345678910111213141516171819202122232425262728293031323334353637
  1. @import 'src/theme/bulma_overrides';
  2. #root, body, html {
  3. width: 100%;
  4. position: relative;
  5. margin: 0;
  6. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
  7. 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
  8. sans-serif;
  9. -webkit-font-smoothing: antialiased;
  10. -moz-osx-font-smoothing: grayscale;
  11. background: repeating-linear-gradient(
  12. 145deg,
  13. rgba(0,0,0,.003),
  14. rgba(0,0,0,.005) 5px,
  15. rgba(0,0,0,0) 5px,
  16. rgba(0,0,0,0) 10px
  17. ),
  18. repeating-linear-gradient(
  19. -145deg,
  20. rgba(0,0,0,.003),
  21. rgba(0,0,0,.005) 5px,
  22. rgba(0,0,0,0) 5px,
  23. rgba(0,0,0,0) 10px
  24. );
  25. background-color: $light;
  26. }
  27. code {
  28. font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
  29. monospace;
  30. }
  31. .cursor-pointer {
  32. cursor: pointer;
  33. }