holidays.scss 978 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .holidays {
  2. padding-bottom: 20px;
  3. &__item {
  4. display: -webkit-flex;
  5. display: -ms-flex;
  6. display: flex;
  7. flex-direction: row;
  8. padding-bottom: 10px;
  9. border-bottom: 1px solid #ebebeb;
  10. margin-bottom: 10px;
  11. flex-wrap: nowrap;
  12. text-decoration: none;
  13. color: #3b434d;
  14. align-items: center;
  15. &:last-child {
  16. padding: 0;
  17. border: 0;
  18. margin: 0;
  19. }
  20. }
  21. &__imgcase {
  22. border: 3px solid #3b434d;
  23. border-radius: 50%;
  24. }
  25. &__item:hover &__imgcase {
  26. border-color: #e65e26;
  27. }
  28. &__img {
  29. border-radius: 50%;
  30. width: 54px;
  31. height: 54px;
  32. }
  33. &__textcase {
  34. padding-left: 10px;
  35. font-size: 13px;
  36. color: #3b434d;
  37. text-decoration: none;
  38. line-height: 15px;
  39. text-align: left;
  40. }
  41. &__item:hover &__textcase {
  42. color: #e65e26;
  43. }
  44. }