install.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. html,body,.footer{
  2. background-color:#343a40!important;
  3. color:#fefefe;
  4. }
  5. .navbar-brand img{
  6. display:none;
  7. }
  8. .navbar-brand {
  9. margin: auto;
  10. background: url(../img/logo.png) no-repeat 0px center;
  11. padding-left: 39px;
  12. text-transform: uppercase;
  13. color: #a9a9a9!important;
  14. }
  15. input.form-control,
  16. input.form-control:active,
  17. input.form-control:focus,
  18. select.form-control,
  19. select.form-control:active,
  20. select.form-control:focus,
  21. textarea.form-control,
  22. textarea.form-control:active,
  23. textarea.form-control:focus
  24. {
  25. background-color: #282c31;
  26. border-color: #282c31;
  27. color:#fefefe;
  28. }
  29. .alert-danger {
  30. color: #ffd7da;
  31. background-color: #841721;
  32. border: 0;
  33. }
  34. .alert-success {
  35. color: #ceead5;
  36. background-color: #28a745;
  37. border-color: #28a745;
  38. }
  39. code {
  40. font-size: 80%;
  41. color: #ffffff;
  42. background-color: #5a6673;
  43. padding: 3px;
  44. }
  45. pre {
  46. display: block;
  47. font-size: 87.5%;
  48. color: #cfd7de;
  49. }
  50. .close {
  51. float: right;
  52. font-size: 1.5rem;
  53. font-weight: 700;
  54. line-height: 1;
  55. color: #fff;
  56. text-shadow: 0 1px 0 #fff;
  57. opacity: .5;
  58. }
  59. .list-group-item {
  60. background-color: #25292d;
  61. }
  62. a {
  63. color: #728ead;
  64. }
  65. a:hover {
  66. color: #8fbcec;
  67. }
  68. .input-group-text {
  69. display: -ms-flexbox;
  70. display: flex;
  71. -ms-flex-align: center;
  72. align-items: center;
  73. padding: .375rem .75rem;
  74. margin-bottom: 0;
  75. font-size: 1rem;
  76. font-weight: 400;
  77. line-height: 1.5;
  78. color: #717d8a;
  79. text-align: center;
  80. white-space: nowrap;
  81. background-color: #171a1d;
  82. border: 1px solid #171a1d;
  83. border-radius: .25rem;
  84. }