a GUI for prismedia, using Electron.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
741 B

  1. @import './color.scss';
  2. html {
  3. font-size: 16px;
  4. word-spacing: 1px;
  5. -ms-text-size-adjust: 100%;
  6. -webkit-text-size-adjust: 100%;
  7. -moz-osx-font-smoothing: grayscale;
  8. -webkit-font-smoothing: antialiased;
  9. box-sizing: border-box;
  10. }
  11. body {
  12. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  13. }
  14. *, *:before, *:after {
  15. box-sizing: border-box;
  16. margin: 0;
  17. }
  18. a.btn-primary {
  19. text-decoration: none;
  20. background: none;
  21. }
  22. .btn, .pointer {
  23. cursor: pointer;
  24. }
  25. .primary {
  26. color: var(--primary);
  27. }
  28. .secondary {
  29. color: var(--secondary);
  30. }
  31. .btn-primary {
  32. background-color: var(--primary);
  33. color: #fff;
  34. }
  35. .btn-secondary {
  36. background-color: var(--secondary);
  37. color: #000;
  38. }