style.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. :root {
  2. font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  3. line-height: 1.5;
  4. font-weight: 400;
  5. color-scheme: light dark;
  6. color: rgba(255, 255, 255, 0.87);
  7. /*background-color: #242424;*/
  8. font-synthesis: none;
  9. text-rendering: optimizeLegibility;
  10. }
  11. *{
  12. /*box-size: border-box;*/
  13. margin: 0;
  14. padding: 0;
  15. }
  16. html , body{
  17. font-size: 16px;
  18. width: 100%;
  19. height: 100%;
  20. /* electron no frame */
  21. overflow: hidden;
  22. }
  23. #app {
  24. width: calc( 100% - 10px);
  25. height: calc( 100% - 10px);
  26. box-sizing: border-box;
  27. margin: 5px;
  28. }
  29. a {
  30. font-weight: 500;
  31. color: #646cff;
  32. text-decoration: inherit;
  33. }
  34. a:hover {
  35. color: #535bf2;
  36. }
  37. h1 {
  38. font-size: 3.2em;
  39. line-height: 1.1;
  40. }
  41. button {
  42. border-radius: 8px;
  43. border: 1px solid transparent;
  44. padding: 0.6em 1.2em;
  45. font-size: 1em;
  46. font-weight: 500;
  47. font-family: inherit;
  48. background-color: #1a1a1a;
  49. cursor: pointer;
  50. transition: border-color 0.25s;
  51. }
  52. button:hover {
  53. border-color: #646cff;
  54. }
  55. button:focus,
  56. button:focus-visible {
  57. outline: 4px auto -webkit-focus-ring-color;
  58. }
  59. @media (prefers-color-scheme: light) {
  60. :root {
  61. color: #213547;
  62. /*background-color: #ffffff;*/
  63. }
  64. a:hover {
  65. color: #747bff;
  66. }
  67. button {
  68. background-color: #f9f9f9;
  69. }
  70. }