Angular job portal app
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

StepHeader.module.scss 670 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .header {
  2. background-color: black;
  3. height: 12vh;
  4. display: flex;
  5. align-items: center;
  6. justify-content: space-between;
  7. .heading {
  8. display: flex;
  9. flex-direction: column;
  10. margin-left: 3.5rem;
  11. .step {
  12. color: white;
  13. font-size: 1.4rem;
  14. font-weight: 600;
  15. }
  16. .roundName {
  17. margin: 0;
  18. color: white;
  19. font-size: 2.4rem;
  20. font-weight: 300;
  21. opacity: 0.8;
  22. }
  23. }
  24. ion-icon {
  25. width: 3.5rem;
  26. height: 4rem;
  27. color: white;
  28. opacity: 0.8;
  29. margin-right: 2.8rem;
  30. }
  31. }