1234567891011121314151617181920212223242526272829303132333435363738 |
- :root {
- --w-70: 70%;
- --primary-color: #1c4587;
- --bg-grey: #EDEEF1;
- }
- /* login css */
- .login-container {
- background-color: var(bg-grey);
- }
- /* end of login */
- .w-70 {
- width: var(--w-70);
- }
- .stag-primary-bg {
- background-color: var(--primary-color);
- color: #fff;
- }
- .navbar-brand {
- font-size: 25px;
- font-weight: 900;
- }
- .nav-item {
- margin-right: 10px;
- }
- .navbar-dark .nav-item .nav-link {
- color: #fff;
- }
- .dropdown-menu {
- margin-top: 7px;
- border-radius: 0;
- }
- .dropdown-item:not(:last-child) {
- border-bottom:1px solid #ddd;
- }
- main {
- padding:0 1rem;
- }
|