site.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
  2. for details on configuring this project to bundle and minify static web assets. */
  3. a.navbar-brand {
  4. white-space: normal;
  5. text-align: center;
  6. word-break: break-all;
  7. }
  8. /* Provide sufficient contrast against white background */
  9. a {
  10. color: #0366d6;
  11. }
  12. .btn-primary {
  13. color: #fff;
  14. background-color: #1b6ec2;
  15. border-color: #1861ac;
  16. }
  17. .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  18. color: #fff;
  19. background-color: #1b6ec2;
  20. border-color: #1861ac;
  21. }
  22. /* Sticky footer styles
  23. -------------------------------------------------- */
  24. html {
  25. font-size: 14px;
  26. }
  27. @media (min-width: 768px) {
  28. html {
  29. font-size: 16px;
  30. }
  31. }
  32. .border-top {
  33. border-top: 1px solid #e5e5e5;
  34. }
  35. .border-bottom {
  36. border-bottom: 1px solid #e5e5e5;
  37. }
  38. .box-shadow {
  39. box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
  40. }
  41. button.accept-policy {
  42. font-size: 1rem;
  43. line-height: inherit;
  44. }
  45. /* Sticky footer styles
  46. -------------------------------------------------- */
  47. html {
  48. position: relative;
  49. min-height: 100%;
  50. }
  51. /* General */
  52. body {
  53. /* Margin bottom by footer height */
  54. /* margin-bottom: 60px;*/
  55. }
  56. .footer {
  57. position: absolute;
  58. bottom: 0;
  59. width: 100%;
  60. white-space: nowrap;
  61. line-height: 60px; /* Vertically center the text there */
  62. }
  63. .divider-v {
  64. height: auto;
  65. width: 2px;
  66. background-color: #A0A0A0;
  67. margin: auto 12px;
  68. clear: both;
  69. }
  70. .top-menu {
  71. border-bottom: 1px solid #dee2e6 !important;
  72. background-color: #f8f9fa !important;
  73. }
  74. /* Custom view styles */
  75. .form-signin {
  76. width: 100%;
  77. max-width: 330px;
  78. padding: 15px;
  79. margin: 0 auto;
  80. text-align: center;
  81. }
  82. .form-signin #Username {
  83. margin-bottom: -1px;
  84. border-bottom-right-radius: 0;
  85. border-bottom-left-radius: 0;
  86. }
  87. .form-signin #Password {
  88. border-top-right-radius: 0;
  89. border-top-left-radius: 0;
  90. }
  91. /* Scrollbar */
  92. ::-webkit-scrollbar-track {
  93. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  94. background-color: #F5F5F5;
  95. }
  96. ::-webkit-scrollbar {
  97. width: 8px;
  98. }
  99. ::-webkit-scrollbar-thumb {
  100. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  101. background-color: #A0A0A0;
  102. }
  103. /* NavBar */
  104. .user-logo-container {
  105. border-left-color: #F29000;
  106. background-color: #F29000;
  107. border-bottom-left-radius: 20px;
  108. border-top-left-radius: 0;
  109. }
  110. .user-logo-content {
  111. margin: auto 0;
  112. }
  113. .user-logo-container img {
  114. width: 32px;
  115. height: 32px;
  116. }