| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- /* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
- for details on configuring this project to bundle and minify static web assets. */
- a.navbar-brand {
- white-space: normal;
- text-align: center;
- word-break: break-all;
- }
- /* Provide sufficient contrast against white background */
- a {
- color: #0366d6;
- }
- .btn-primary {
- color: #fff;
- background-color: #1b6ec2;
- border-color: #1861ac;
- }
- .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
- color: #fff;
- background-color: #1b6ec2;
- border-color: #1861ac;
- }
- /* Sticky footer styles
- -------------------------------------------------- */
- html {
- font-size: 14px;
- }
- @media (min-width: 768px) {
- html {
- font-size: 16px;
- }
- }
- .border-top {
- border-top: 1px solid #e5e5e5;
- }
- .border-bottom {
- border-bottom: 1px solid #e5e5e5;
- }
- .box-shadow {
- box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
- }
- button.accept-policy {
- font-size: 1rem;
- line-height: inherit;
- }
- /* Sticky footer styles
- -------------------------------------------------- */
- html {
- position: relative;
- min-height: 100%;
- }
- /* General */
- body {
- /* Margin bottom by footer height */
- /* margin-bottom: 60px;*/
- }
- .footer {
- position: absolute;
- bottom: 0;
- width: 100%;
- white-space: nowrap;
- line-height: 60px; /* Vertically center the text there */
- }
- .divider-v {
- height: auto;
- width: 2px;
- background-color: #A0A0A0;
- margin: auto 12px;
- clear: both;
- }
- .top-menu {
- border-bottom: 1px solid #dee2e6 !important;
- background-color: #f8f9fa !important;
- }
- /* Custom view styles */
- .form-signin {
- width: 100%;
- max-width: 330px;
- padding: 15px;
- margin: 0 auto;
- text-align: center;
- }
- .form-signin #Username {
- margin-bottom: -1px;
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
- }
- .form-signin #Password {
- border-top-right-radius: 0;
- border-top-left-radius: 0;
- }
- /* Scrollbar */
- ::-webkit-scrollbar-track {
- -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
- background-color: #F5F5F5;
- }
- ::-webkit-scrollbar {
- width: 8px;
- }
- ::-webkit-scrollbar-thumb {
- -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
- background-color: #A0A0A0;
- }
- /* NavBar */
- .user-logo-container {
- border-left-color: #F29000;
- background-color: #F29000;
- border-bottom-left-radius: 20px;
- border-top-left-radius: 0;
- }
- .user-logo-content {
- margin: auto 0;
- }
- .user-logo-container img {
- width: 32px;
- height: 32px;
- }
- /* Bootstrap extension and editing */
- .modal-header-info {
- background-color: #17a2b8 !important;
- }
- .modal-content-header-custom {
- border-top-left-radius: .4rem;
- border-top-right-radius: .4rem;
- }
|