You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

114 lines
1.4 KiB

  1. body {
  2. font-family: 'Noto Sans SC', sans-serif;
  3. background: linear-gradient(-45deg,
  4. #fff calc(50% - 1px),
  5. #ddd calc(50%),
  6. #fff calc(50% + 1px)
  7. );
  8. background-size: 6px 5px;
  9. }
  10. h1,
  11. h2,
  12. h3,
  13. h4,
  14. h5,
  15. h6 {
  16. font-family: 'Noto Serif SC', serif;
  17. font-weight: 300;
  18. }
  19. progress {
  20. width: 90%;
  21. }
  22. #local-volume {
  23. display: flex;
  24. width: 90%;
  25. margin-bottom: 10px;
  26. }
  27. #local-volume input {
  28. flex: auto;
  29. margin: 0 8px;
  30. }
  31. #local-volume label {
  32. flex: 0 0 auto;
  33. margin-right: 15px;
  34. }
  35. img {
  36. vertical-align: sub;
  37. }
  38. .join-form {
  39. display: inline-block;
  40. }
  41. a,
  42. a:hover,
  43. .btn-link,
  44. .btn-link:hover {
  45. color: inherit;
  46. text-decoration: underline;
  47. padding-left: 5px;
  48. padding-bottom: 0;
  49. }
  50. p:not(:hover) .logout-link {
  51. display: none;
  52. }
  53. .btn-lg {
  54. font-family: 'Noto Serif SC', serif;
  55. }
  56. .part1 {
  57. min-width: 35vw;
  58. float: left;
  59. padding-right: 10px;
  60. position: relative;
  61. }
  62. .part2 {
  63. min-width: 200px;
  64. overflow: hidden;
  65. padding-left: 25px;
  66. }
  67. .qbox {
  68. border: 2px black solid;
  69. background: white;
  70. padding: 5px;
  71. color: black;
  72. margin: 5px 5px 40px;
  73. }
  74. .part1 .qbox {
  75. background: black;
  76. color: white;
  77. }
  78. .part1 .qbox input {
  79. border: none;
  80. border-bottom: 1px solid;
  81. border-radius: 0;
  82. border-bottom: 2px solid;
  83. background: black;
  84. color: white;
  85. }
  86. .footer {
  87. background: black;
  88. color: white;
  89. text-align: center;
  90. font-size: 80%;
  91. border-top: solid 1px white;
  92. }
  93. .footer p {
  94. margin: 10px 0 0;
  95. float: bottom;
  96. }