Project: Mall App Client: Maiora
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

56 lines
1.1 KiB

  1. .header-bar {
  2. background-image: url('../../assets/custom/background-5.svg');
  3. background-size: cover;
  4. background-repeat: no-repeat;
  5. background-position: left top;
  6. display: flex;
  7. align-items: center;
  8. justify-content: space-between;
  9. padding: 15px;
  10. height: 75px;
  11. z-index: 3;
  12. top: 0;
  13. left: 0;
  14. width: 100%;
  15. position: sticky;
  16. box-shadow: 0px 3px 5px var(--brand-grey);
  17. margin-bottom: 20px;
  18. .heading-holder {
  19. display: flex;
  20. align-items: center;
  21. }
  22. button, a {
  23. background-color: white;
  24. color: var(--brand-blue);
  25. font-size: 18px;
  26. padding: 5px;
  27. border-radius: 50%;
  28. height: 30px;
  29. width: 30px;
  30. display: flex;
  31. justify-content: center;
  32. align-items: center;
  33. &.active {
  34. color: white;
  35. background-color: var(--brand-blue);
  36. }
  37. }
  38. h3 {
  39. font-size: 16px;
  40. color: white;
  41. letter-spacing: 0.5px;
  42. margin-left: 10px;
  43. font-weight: 600;
  44. }
  45. }
  46. iframe {
  47. width: 100vw;
  48. height: 80vh;
  49. }