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.

131 lines
2.3 KiB

4 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. .card-hover {
  11. background-color: #f8f9fa!important;
  12. }
  13. @media (prefers-color-scheme: dark) {
  14. body {
  15. background-color: #111 !important;
  16. color: #eee;
  17. }
  18. .jumbotron {
  19. background-color: #333 !important;
  20. }
  21. .modal-content {
  22. background-color: #111 !important;
  23. color: #eee;
  24. }
  25. .modal-header {
  26. border-bottom: 1px solid #555 !important;
  27. }
  28. .modal-header .close {
  29. color: #eee !important;
  30. text-shadow: 0 1px 0 #555 !important;
  31. }
  32. .modal-footer {
  33. border-top: 1px solid #555 !important;
  34. }
  35. .bg-light {
  36. background-color: #333 !important;
  37. }
  38. .bg-white {
  39. background-color: #000 !important;
  40. }
  41. .bg-black {
  42. background-color: #eee !important;
  43. }
  44. .form-control {
  45. display: block;
  46. width: 100%;
  47. height: calc(1.5em + 0.75rem + 2px);
  48. padding: 0.375rem 0.75rem;
  49. font-size: 1rem;
  50. font-weight: 400;
  51. line-height: 1.5;
  52. color: #dee2e6;
  53. background-color: #000;
  54. background-clip: padding-box;
  55. border: 1px solid #6c757d;
  56. border-radius: 0.25rem;
  57. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  58. }
  59. .card {
  60. background-color: #000;
  61. border: 1px solid #6c757d;
  62. }
  63. .card-hover {
  64. background-color: #343a40!important;
  65. color: white !important;
  66. }
  67. @media (prefers-reduced-motion: reduce) {
  68. .form-control {
  69. transition: none;
  70. }
  71. }
  72. .form-control::-ms-expand {
  73. background-color: transparent;
  74. border: 0;
  75. }
  76. .form-control:-moz-focusring {
  77. color: transparent;
  78. text-shadow: 0 0 0 #dee2e6;
  79. }
  80. .form-control:focus {
  81. color: #dee2e6;
  82. background-color: #191d21;
  83. border-color: #b3d7ff;
  84. outline: 0;
  85. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  86. }
  87. .form-control::-webkit-input-placeholder {
  88. color: #6c757d;
  89. opacity: 1;
  90. }
  91. .form-control::-moz-placeholder {
  92. color: #6c757d;
  93. opacity: 1;
  94. }
  95. .form-control::-ms-input-placeholder {
  96. color: #6c757d;
  97. opacity: 1;
  98. }
  99. .form-control::placeholder {
  100. color: #6c757d;
  101. opacity: 1;
  102. }
  103. .form-control:disabled,
  104. .form-control[readonly] {
  105. background-color: #343a40;
  106. opacity: 1;
  107. }
  108. }