style.css 574 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. :root {
  2. --w-70: 70%;
  3. --primary-color: #1c4587;
  4. --bg-grey: #EDEEF1;
  5. }
  6. /* login css */
  7. .login-container {
  8. background-color: var(bg-grey);
  9. }
  10. /* end of login */
  11. .w-70 {
  12. width: var(--w-70);
  13. }
  14. .stag-primary-bg {
  15. background-color: var(--primary-color);
  16. color: #fff;
  17. }
  18. .navbar-brand {
  19. font-size: 25px;
  20. font-weight: 900;
  21. }
  22. .nav-item {
  23. margin-right: 10px;
  24. }
  25. .navbar-dark .nav-item .nav-link {
  26. color: #fff;
  27. }
  28. .dropdown-menu {
  29. margin-top: 7px;
  30. border-radius: 0;
  31. }
  32. .dropdown-item:not(:last-child) {
  33. border-bottom:1px solid #ddd;
  34. }
  35. main {
  36. padding:0 1rem;
  37. }