region.scss 742 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .region {
  2. display: -webkit-flex;
  3. display: -ms-flex;
  4. display: flex;
  5. flex-direction: row;
  6. justify-content: center;
  7. align-items: center;
  8. align-content: center;
  9. position: relative;
  10. &__img {
  11. margin: 0 10px;
  12. width: 33px;
  13. height: 33px;
  14. border-radius: 50%;
  15. }
  16. &__link {
  17. color: #ffffff;
  18. display: -webkit-flex;
  19. display: -ms-flex;
  20. display: flex;
  21. flex-direction: row;
  22. &:hover {
  23. text-decoration: none;
  24. }
  25. }
  26. &__name {
  27. @extend .region;
  28. }
  29. &__selection-box {
  30. position: absolute;
  31. width: 600px;
  32. top: 40px;
  33. background: #ffffff;
  34. font-size: 14px;
  35. }
  36. }