maintitle.scss 735 B

123456789101112131415161718192021222324252627282930313233
  1. .maintitle {
  2. background: #ebebeb;
  3. border-radius: 10px 0 0 0 / 10px 0 0 0;
  4. height: 50px;
  5. display: -webkit-flex;
  6. display: -ms-flex;
  7. display: flex;
  8. flex-direction: row;
  9. justify-content: space-between;
  10. align-items: center;
  11. margin-bottom: 20px;
  12. position: relative;
  13. &__title {
  14. padding: 0 10px;
  15. font-family: $fontcuprum;
  16. font-size: 20px;
  17. color: #3b434d;
  18. font-weight: bold;
  19. }
  20. &__details {
  21. display: -webkit-flex;
  22. display: -ms-flex;
  23. display: flex;
  24. flex-direction: row;
  25. width: auto;
  26. padding: 0 5px;
  27. justify-content: center;
  28. align-items: center;
  29. align-content: center;
  30. }
  31. }