Guest User

Untitled

a guest
Oct 23rd, 2025
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.35 KB | None | 0 0
  1. :root {
  2.     --nav_bg: #1c5669;
  3.     --btnborder: #9c8fc5;
  4.     --nextborder:#0c262b;
  5.     --boxborder:#cba6f7;
  6.     --nav_border:#1e1e2e;
  7.     --darkstripe:#a183c3;
  8.     --b_primary_border: #cdaefe;
  9.     --b_primary:#8f79b1;
  10.     --alink:#b3a4e2;
  11. }
  12.  
  13. #navbar {
  14.     background-color: transparent;
  15.     border:none;
  16. }
  17. #thebody {
  18.     background-image: linear-gradient(to bottom, var(--nav_border), black);
  19.     background-repeat: no-repeat;
  20. }
  21. #wrapper {
  22.     top:calc(var(--navheight));
  23.     /*background-image: linear-gradient(to bottom, #1e1e1e, black);*/
  24.     /*ackground-image: linear-gradient(to bottom, #1d5669, black);*/
  25.     border: 1.5px solid var(--btnborder);
  26.     border-top-width: 2.5px;
  27.     border-radius: 10px
  28. }
  29. #wrapper.qzoom_1 {
  30.     max-width: none
  31. }
  32. #wrapper.qzoom_2 {
  33.     max-width: none
  34. }
  35. #wrapper.qzoom_3 {
  36.     max-width: none
  37. }
  38. #wrapper.qzoom_4 {
  39.     max-width: none
  40. }
  41. #wrapper.qzoom_5 {
  42.     max-width: none
  43. }
  44. .quiz_bg,
  45. #quiz_resbox_inner
  46. {
  47.     border-color: var(--btnborder);
  48. }
  49. .correctbox,
  50. .wrongbox,
  51. .quiz_bg,
  52. #quiz_resbox_inner {
  53.     border-width: 2.5px !important;
  54.     border-radius: 10px;
  55. }
  56. .pure-button-small {
  57.     border-radius:7.5px
  58. }
  59. .quiz_submit {
  60.     background-color: var(--btnborder);
  61.     border:2px solid var(--nextborder);
  62.     border-radius: 10px;
  63. }
  64. .reibox {
  65.     background-color: #252525;
  66. }
  67. #sett_button {
  68.     border-top-left-radius: 40px;
  69. }
  70.  
  71. .reinorm {
  72.     background-color: #505050 !important
  73. }
  74. #questionbox .reibox, .flexbox .force_furi, .sentence_drop {
  75.     background-color: #2f3030;
  76.     margin: 0px;
  77. }
  78.  
  79. .reibox span { margin: 0px; }
  80. .sentence_drop { margin: 0px !important; padding: 0px}
  81. .sent_blank { min-width: 10px; }
  82.  
  83. .piece_holder .sentence_drop {
  84.     margin: 0px 6px 0px 6px !important
  85. }
  86. #question_type, #show_answers {
  87.     border-radius: 5px;
  88.     text-align: center
  89. }
  90.  
  91. #term_list_lbox {
  92.     margin: 0px;
  93.     padding: 10px;
  94.     width: 100%;
  95.     left: 0;
  96. }
  97. .kanji_blank {
  98.     color: gray;
  99. }
  100. button.pure-button {
  101.     transition: all 0.5s ease-in;
  102.     border-radius: 5px;
  103. }
  104. button.pure-button:hover {
  105.     background-blend-mode: darken;
  106.     background: var(--darkstripe);
  107.     border-radius: 0px
  108. }
  109. #blankbox {
  110.     box-shadow: none;
  111.     border-color: var(--b_primary_border);
  112.     border-radius: 5px;
  113. }
  114.  
  115. #next {
  116.     background-color: #463b56;
  117.     color: white;
  118.     transition: all 0.5s ease-out;
  119. }
  120. #next:hover {
  121.     background-color: black;
  122.     border-radius: 10px;
  123. }
Tags: CSS
Advertisement
Add Comment
Please, Sign In to add comment