Advertisement
dhiforester

StyleRouting

Dec 1st, 2023
822
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.78 KB | Software | 0 0
  1.  /* Show it is fixed to the top */
  2.  body {
  3.     min-height: 75rem;
  4.     padding-top: 4.5rem;
  5. }
  6. .bd-placeholder-img {
  7.     font-size: 1.125rem;
  8.     text-anchor: middle;
  9.     -webkit-user-select: none;
  10.     -moz-user-select: none;
  11.     user-select: none;
  12. }
  13.  
  14. @media (min-width: 768px) {
  15.     .bd-placeholder-img-lg {
  16.     font-size: 3.5rem;
  17.     }
  18. }
  19.  
  20. .b-example-divider {
  21.     width: 100%;
  22.     height: 3rem;
  23.     background-color: rgba(0, 0, 0, .1);
  24.     border: solid rgba(0, 0, 0, .15);
  25.     border-width: 1px 0;
  26.     box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
  27. }
  28.  
  29. .b-example-vr {
  30.     flex-shrink: 0;
  31.     width: 1.5rem;
  32.     height: 100vh;
  33. }
  34.  
  35. .bi {
  36.     vertical-align: -.125em;
  37.     fill: currentColor;
  38. }
  39.  
  40. .nav-scroller {
  41.     position: relative;
  42.     z-index: 2;
  43.     height: 2.75rem;
  44.     overflow-y: hidden;
  45. }
  46.  
  47. .nav-scroller .nav {
  48.     display: flex;
  49.     flex-wrap: nowrap;
  50.     padding-bottom: 1rem;
  51.     margin-top: -1px;
  52.     overflow-x: auto;
  53.     text-align: center;
  54.     white-space: nowrap;
  55.     -webkit-overflow-scrolling: touch;
  56. }
  57.  
  58. .btn-bd-primary {
  59.     --bd-violet-bg: #712cf9;
  60.     --bd-violet-rgb: 112.520718, 44.062154, 249.437846;
  61.  
  62.     --bs-btn-font-weight: 600;
  63.     --bs-btn-color: var(--bs-white);
  64.     --bs-btn-bg: var(--bd-violet-bg);
  65.     --bs-btn-border-color: var(--bd-violet-bg);
  66.     --bs-btn-hover-color: var(--bs-white);
  67.     --bs-btn-hover-bg: #6528e0;
  68.     --bs-btn-hover-border-color: #6528e0;
  69.     --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
  70.     --bs-btn-active-color: var(--bs-btn-hover-color);
  71.     --bs-btn-active-bg: #5a23c8;
  72.     --bs-btn-active-border-color: #5a23c8;
  73. }
  74.  
  75. .bd-mode-toggle {
  76.     z-index: 1500;
  77. }
  78.  
  79. .bd-mode-toggle .dropdown-menu .active .bi {
  80.     display: block !important;
  81. }
Tags: CSS routing
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement