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.

152 lines
2.6 KiB

4 years ago
4 years ago
3 years ago
3 years ago
  1. @media (max-width: 991.98px) {
  2. #userNameRow,
  3. #firstNameRow {
  4. margin-bottom: 20px;
  5. }
  6. #passwordButton {
  7. margin-bottom: 50px;
  8. }
  9. }
  10. .navbar-nav .nav-link {
  11. padding-right: .5rem !important;
  12. padding-left: .5rem !important;
  13. }
  14. @media (prefers-color-scheme: dark) {
  15. body {
  16. background-color: #111 !important;
  17. color: #eee;
  18. }
  19. .jumbotron {
  20. background-color: #333 !important;
  21. }
  22. .modal-content {
  23. background-color: #111 !important;
  24. color: #eee;
  25. }
  26. .modal-header {
  27. border-bottom: 1px solid #555 !important;
  28. }
  29. .modal-header .close {
  30. color: #eee !important;
  31. text-shadow: 0 1px 0 #555 !important;
  32. }
  33. .modal-footer {
  34. border-top: 1px solid #555 !important;
  35. }
  36. .bg-light {
  37. background-color: #333 !important;
  38. }
  39. .bg-white {
  40. background-color: #000 !important;
  41. }
  42. .bg-black {
  43. background-color: #eee !important;
  44. }
  45. .form-control {
  46. display: block;
  47. width: 100%;
  48. height: calc(1.5em + 0.75rem + 2px);
  49. padding: 0.375rem 0.75rem;
  50. font-size: 1rem;
  51. font-weight: 400;
  52. line-height: 1.5;
  53. color: #dee2e6;
  54. background-color: #000;
  55. background-clip: padding-box;
  56. border: 1px solid #6c757d;
  57. border-radius: 0.25rem;
  58. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  59. }
  60. @media (prefers-reduced-motion: reduce) {
  61. .form-control {
  62. transition: none;
  63. }
  64. }
  65. .form-control::-ms-expand {
  66. background-color: transparent;
  67. border: 0;
  68. }
  69. .form-control:-moz-focusring {
  70. color: transparent;
  71. text-shadow: 0 0 0 #dee2e6;
  72. }
  73. .form-control:focus {
  74. color: #dee2e6;
  75. background-color: #191d21;
  76. border-color: #b3d7ff;
  77. outline: 0;
  78. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  79. }
  80. .form-control::-webkit-input-placeholder {
  81. color: #6c757d;
  82. opacity: 1;
  83. }
  84. .form-control::-moz-placeholder {
  85. color: #6c757d;
  86. opacity: 1;
  87. }
  88. .form-control::-ms-input-placeholder {
  89. color: #6c757d;
  90. opacity: 1;
  91. }
  92. .form-control::placeholder {
  93. color: #6c757d;
  94. opacity: 1;
  95. }
  96. .form-control:disabled,
  97. .form-control[readonly] {
  98. background-color: #343a40;
  99. opacity: 1;
  100. }
  101. }
  102. .overlay-frame {
  103. z-index: 1050;
  104. position: fixed;
  105. top: 55px;
  106. right: 10px;
  107. border-radius: .25rem;
  108. border: 1px solid #6c757d;
  109. }
  110. #overlay {
  111. width: 100%;
  112. height: 100%;
  113. z-index: 1040;
  114. background-color: rgba(0, 0, 0, 0);
  115. position: fixed;
  116. top: 0;
  117. left: 0;
  118. overflow: hidden;
  119. }
  120. .faded {
  121. color: white;
  122. opacity: 0.25;
  123. }
  124. .clip-row {
  125. white-space: nowrap;
  126. overflow: hidden;
  127. text-overflow: ellipsis;
  128. }