style.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. @import "./fonts/roboto/font.css";
  2. @import "./fonts/roboto-mono/font.css";
  3. * {
  4. text-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
  5. -webkit-font-smoothing: antialiased;
  6. -moz-osx-font-smoothing: grayscale;
  7. }
  8. html,
  9. body {
  10. font-family: "Avenir", Helvetica, Arial, sans-serif;
  11. font-family: Roboto, sans-serif;
  12. padding: 0;
  13. margin: 0;
  14. height: 100vh;
  15. max-width: 100%;
  16. max-height: 100%;
  17. }
  18. h4 {
  19. margin: 8px 0 8px 0;
  20. font-weight: bold;
  21. }
  22. b {
  23. font-weight: bold;
  24. }
  25. label {
  26. margin-top: 8px;
  27. }
  28. button {
  29. background: transparent;
  30. position: relative;
  31. outline: none;
  32. cursor: pointer;
  33. border: none;
  34. padding: 10px;
  35. transition: all var(--transition-speed);
  36. }
  37. button::-moz-focus-inner {
  38. border: 0;
  39. }
  40. button:disabled {
  41. opacity: 0.2;
  42. cursor: none;
  43. pointer-events: none;
  44. user-select: none;
  45. filter: saturate(0.2);
  46. }
  47. button::after,
  48. .hover::after {
  49. content: " ";
  50. position: absolute;
  51. top: 0;
  52. right: 0;
  53. bottom: 0;
  54. left: 0;
  55. transition: all var(--transition-speed);
  56. opacity: 0;
  57. background: #222 !default;
  58. }
  59. button:hover::after,
  60. .hover:hover::after {
  61. opacity: 0.2 !default;
  62. }
  63. ul {
  64. margin-left: 10px;
  65. padding-left: 15px;
  66. list-style: disc;
  67. }
  68. small {
  69. opacity: 0.7;
  70. font-size: 10px;
  71. color: #555;
  72. }
  73. input {
  74. outline: none;
  75. background: #fff;
  76. width: 100%;
  77. border: none;
  78. padding: 10px;
  79. }
  80. textarea {
  81. outline: none;
  82. background: #fff;
  83. width: 100%;
  84. border: none;
  85. padding: 10px;
  86. }
  87. /* Let's get this party started */
  88. ::-webkit-scrollbar {
  89. padding-top: 10px;
  90. width: 8px;
  91. height: 8px;
  92. }
  93. /* Track */
  94. ::-webkit-scrollbar-track {
  95. border-radius: 0;
  96. width: 3px;
  97. height: 3px;
  98. background: rgba(55, 55, 55, 0.1);
  99. }
  100. /* Handle */
  101. ::-webkit-scrollbar-thumb {
  102. border-radius: 0;
  103. width: 8px;
  104. height: 8px;
  105. background: rgba(155, 155, 155, 0.8);
  106. }
  107. ::-webkit-scrollbar-thumb:window-inactive {
  108. background: rgba(55, 55, 55, 0.8);
  109. }
  110. @import "./default-theme.css";