Advertisement
-AnonymousD-

Untitled

Jan 17th, 2025
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.85 KB | None | 0 0
  1.      
  2.  
  3. .form-control-dark {
  4.   border-color: var(--bs-gray);
  5. }
  6. .form-control-dark:focus {
  7.   border-color: #fff;
  8.   box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .25);
  9. }
  10.  
  11. .text-small {
  12.   font-size: 85%;
  13. }
  14.  
  15. .dropdown-toggle:not(:focus) {
  16.   outline: 0;
  17. }
  18.  
  19. p::selection{
  20.   background: #00fff2;
  21. }
  22.  
  23. h1::selection{
  24.   background: #00fff2;
  25. }
  26.  
  27. a::selection{
  28.   background: #00fff2;
  29. }
  30.  
  31. span::selection{
  32.   background: #00fff2;
  33. }
  34.  
  35. small::selection{
  36.   background: #00fff2;
  37. }
  38.  
  39. .breadcrumb-chevron {
  40.   --bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236c757d'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  41.   gap: .5rem;
  42. }
  43. .breadcrumb-chevron .breadcrumb-item {
  44.   display: flex;
  45.   gap: inherit;
  46.   align-items: center;
  47.   padding-left: 0;
  48.   line-height: 1;
  49. }
  50. .breadcrumb-chevron .breadcrumb-item::before {
  51.   gap: inherit;
  52.   float: none;
  53.   width: 1rem;
  54.   height: 1rem;
  55. }
  56.  
  57. .breadcrumb-custom .breadcrumb-item {
  58.   position: relative;
  59.   flex-grow: 1;
  60.   padding: .75rem 3rem;
  61. }
  62. .breadcrumb-custom .breadcrumb-item::before {
  63.   display: none;
  64. }
  65. .breadcrumb-custom .breadcrumb-item::after {
  66.   position: absolute;
  67.   top: 50%;
  68.   right: -25px;
  69.   z-index: 1;
  70.   display: inline-block;
  71.   width: 50px;
  72.   height: 50px;
  73.   margin-top: -25px;
  74.   content: "";
  75.   background-color: var(--bs-tertiary-bg);
  76.   border-top-right-radius: .5rem;
  77.   box-shadow: 1px -1px var(--bs-border-color);
  78.   transform: scale(.707) rotate(45deg);
  79. }
  80. .breadcrumb-custom .breadcrumb-item:first-child {
  81.   padding-left: 1.5rem;
  82. }
  83. .breadcrumb-custom .breadcrumb-item:last-child {
  84.   padding-right: 1.5rem;
  85. }
  86. .breadcrumb-custom .breadcrumb-item:last-child::after {
  87.   display: none;
  88. }
  89.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement