| 1234567891011121314151617181920212223242526272829303132 |
- .region-selection {
- &__box {
- -webkit-box-shadow: 0 0 10px 0 #a8a8a8;
- box-shadow: 0 0 10px 0 #a8a8a8;
- box-sizing: border-box;
- padding: 10px;
- &:before {
- position: absolute;
- content: '';
- top: -13px;
- left: 50%;
- background: url(../img/regions-block-arrow.png);
- width: 19px;
- height: 13px;
- }
- }
- &__item {
- }
- &__link {
- font-size: 11px;
- font-family: $fontopensans;
- color: #929292;
- text-decoration: none;
- &:hover {
- color: lighten(#929292, 10%);
- text-decoration: underline;
- }
- }
- }
|