site.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. body {
  52. /* Margin bottom by footer height */
  53. /* margin-bottom: 60px;*/
  54. }
  55. .footer {
  56. position: absolute;
  57. bottom: 0;
  58. width: 100%;
  59. white-space: nowrap;
  60. line-height: 60px; /* Vertically center the text there */
  61. }
  62. /* Custom view styles */
  63. .form-signin {
  64. width: 100%;
  65. max-width: 330px;
  66. padding: 15px;
  67. margin: 0 auto;
  68. text-align: center;
  69. }
  70. .form-signin #Username {
  71. margin-bottom: -1px;
  72. border-bottom-right-radius: 0;
  73. border-bottom-left-radius: 0;
  74. }
  75. .form-signin #Password {
  76. border-top-right-radius: 0;
  77. border-top-left-radius: 0;
  78. }
  79. /* Scrollbar */
  80. ::-webkit-scrollbar-track {
  81. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  82. background-color: #F5F5F5;
  83. }
  84. ::-webkit-scrollbar {
  85. width: 8px;
  86. }
  87. ::-webkit-scrollbar-thumb {
  88. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  89. background-color: #A0A0A0;
  90. }