Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

_base.scss 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* App Overlay
  2. ******************************************************************************* */
  3. .app-overlay {
  4. position: absolute;
  5. z-index: 3;
  6. background-color: transparent;
  7. inset: 0;
  8. transition: all .25s ease-in-out;
  9. visibility: hidden;
  10. &.show {
  11. background-color: rgba($black, .5);
  12. visibility: visible;
  13. }
  14. }
  15. /* IE Fixes
  16. ******************************************************************************* */
  17. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  18. /* Fix IE parent container height bug when containing image with fluid width */
  19. .card,
  20. .card-body,
  21. .media,
  22. .flex-column,
  23. .tab-content {
  24. min-block-size: 1px;
  25. }
  26. img {
  27. block-size: auto;
  28. min-block-size: 1px;
  29. }
  30. }
  31. /* Containers
  32. ******************************************************************************* */
  33. .container,
  34. .container-fluid,
  35. .container-xxl {
  36. padding-inline: $container-padding-x-sm;
  37. @include media-breakpoint-up(lg) {
  38. padding-inline: $container-padding-x;
  39. }
  40. }
  41. /* Buy now section
  42. ******************************************************************************* */
  43. .buy-now {
  44. .btn-buy-now {
  45. position: fixed;
  46. z-index: $zindex-menu-fixed;
  47. box-shadow: 0 1px 20px 1px $danger;
  48. inset-block-end: 3rem;
  49. inset-inline-end: $container-padding-x;
  50. &:hover {
  51. box-shadow: none;
  52. }
  53. }
  54. }