index.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. :root {
  2. --page-1: #ffffff;
  3. --page-2: #e0a090;
  4. --accent-1: #f0c7bd;
  5. --accent-2: #fcbaab;
  6. --neutral-1: #eee;
  7. --neutral-2: #888;
  8. --space-xxs: 0.05rem;
  9. --space-xs: 0.125rem;
  10. --space-s: 0.25rem;
  11. --space-m: 0.5rem;
  12. --space-l: 1.0rem;
  13. --space-xl: 1.5rem;
  14. --size-xxs: 4rem;
  15. --size-xs: 8rem;
  16. --size-s: 16rem;
  17. --size-m: 24rem;
  18. --size-l: 32rem;
  19. }
  20. .img {
  21. max-width:100%;
  22. max-height:100%;
  23. }
  24. .main {
  25. background: var(--page-1);
  26. margin: var(--space-m);
  27. display: inline-flex;
  28. flex-direction: column;
  29. width: 25%;
  30. margin: auto;
  31. margin-bottom: 10px;
  32. overflow-y:auto;
  33. border-bottom: solid 3px var(--page-2);
  34. border-right: solid 3px var(--page-2);
  35. }
  36. .user-card {
  37. background: var(--page-1);
  38. margin: var(--space-m);
  39. display: inline-flex;
  40. flex-direction: column;
  41. width: 25%;
  42. margin: auto;
  43. margin-top: 25px;
  44. margin-bottom: 25px;
  45. overflow-y:auto;
  46. border-bottom: solid 3px var(--page-2);
  47. border-right: solid 3px var(--page-2);
  48. }
  49. .main-page {
  50. margin: var(--space-m);
  51. margin-left: 25px;
  52. max-height: 100%;
  53. }
  54. .main-xs .main-page {
  55. width: var(--size-xs);
  56. }
  57. .main-s .main-page {
  58. width: var(--size-s);
  59. }
  60. .main-m .main-page {
  61. width: var(--size-m);
  62. }
  63. .main-l .main-page {
  64. width: var(--size-l);
  65. }
  66. .main-bar {
  67. display: flex;
  68. padding: var(--space-s);
  69. background: var(--accent-1);
  70. border-radius: var(--space-s) var(--space-s) 0 0;
  71. align-items: center;
  72. }
  73. .main-title {
  74. flex-grow: 1;
  75. margin-left: var(--space-m);
  76. user-select: none;
  77. }
  78. html {
  79. font-family: monospace;
  80. font-size: 100%;
  81. background: var(--accent-2);
  82. color: var(--page-2);
  83. }
  84. html, body {
  85. width: 100%;
  86. height: 100%;
  87. margin: 0;
  88. padding: 0;
  89. }
  90. .f {
  91. display: grid;
  92. }
  93. .page {
  94. width: 100%;
  95. height: 100%;
  96. display: flex;
  97. align-items: center;
  98. justify-content: center;
  99. }
  100. .q84 {
  101. margin-left: 35%;
  102. margin-bottom: 10px;
  103. }
  104. ::-webkit-scrollbar {
  105. width: 5px;
  106. }
  107. ::-webkit-scrollbar-track {
  108. background: #ffffff;
  109. }
  110. ::-webkit-scrollbar-thumb {
  111. background: #f2afa0;
  112. }
  113. ::-webkit-scrollbar-thumb:hover {
  114. background: #c9968b;
  115. }
  116. a, a:visited, a:hover, a:active, a:link {
  117. color: inherit;
  118. }