styles.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /* You can add global styles to this file, and also import other style files */
  2. //@import "bootstrap/scss/functions";
  3. //@import "bootstrap/scss/variables";
  4. html, body {
  5. position: relative;
  6. width: 100%;
  7. height: 100%;
  8. }
  9. body {
  10. color: #333;
  11. margin: 0;
  12. padding: 8px;
  13. box-sizing: border-box;
  14. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  15. }
  16. a {
  17. color: rgb(0,100,200);
  18. text-decoration: none;
  19. }
  20. a:hover {
  21. text-decoration: underline;
  22. }
  23. a:visited {
  24. color: rgb(0,80,160);
  25. }
  26. label {
  27. display: block;
  28. }
  29. input, button, select, textarea {
  30. font-family: inherit;
  31. font-size: inherit;
  32. -webkit-padding: 0.4em 0;
  33. padding: 0.4em;
  34. margin: 0 0 0.5em 0;
  35. box-sizing: border-box;
  36. border: 1px solid #ccc;
  37. border-radius: 2px;
  38. }
  39. input:disabled {
  40. color: #ccc;
  41. }
  42. button {
  43. color: #333;
  44. background-color: #f4f4f4;
  45. outline: none;
  46. }
  47. button:disabled {
  48. color: #999;
  49. }
  50. button:not(:disabled):active {
  51. background-color: #ddd;
  52. }
  53. button:focus {
  54. border-color: #666;
  55. }
  56. main {
  57. padding: 1em;
  58. max-width: 240px;
  59. margin: 0 auto;
  60. }
  61. h1 {
  62. color: #ff3e00;
  63. text-transform: uppercase;
  64. font-size: 2em;
  65. font-weight: 100;
  66. }
  67. h2 {
  68. color: #ff3e00;
  69. }
  70. @media (min-width: 640px) {
  71. main {
  72. max-width: none;
  73. }
  74. }
  75. .hsl {
  76. /*
  77. hs-sidebar, .hs-sidebar-list, .hs-sidebar-item {
  78. background-color: rgb(240, 240, 240)
  79. }
  80. .card-header {
  81. color: $primary
  82. }
  83. */
  84. }