region-selection-box.scss 697 B

1234567891011121314151617181920212223242526272829303132
  1. .region-selection {
  2. &__box {
  3. -webkit-box-shadow: 0 0 10px 0 #a8a8a8;
  4. box-shadow: 0 0 10px 0 #a8a8a8;
  5. box-sizing: border-box;
  6. padding: 10px;
  7. &:before {
  8. position: absolute;
  9. content: '';
  10. top: -13px;
  11. left: 50%;
  12. background: url(../img/regions-block-arrow.png);
  13. width: 19px;
  14. height: 13px;
  15. }
  16. }
  17. &__item {
  18. }
  19. &__link {
  20. font-size: 11px;
  21. font-family: $fontopensans;
  22. color: #929292;
  23. text-decoration: none;
  24. &:hover {
  25. color: lighten(#929292, 10%);
  26. text-decoration: underline;
  27. }
  28. }
  29. }