entitybanner.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. .entitybanner {
  2. margin-bottom: 20px;
  3. &__item {
  4. margin-bottom: 20px;
  5. border: 1px solid #ebebeb;
  6. display: -webkit-flex;
  7. display: -ms-flex;
  8. display: flex;
  9. flex-direction: column;
  10. text-decoration: none;
  11. border-radius: 10px 0 0 0 / 10px 0 0 0;
  12. &:hover {
  13. border-color: #d2dee9;
  14. }
  15. &:hover .entitybanner__address {
  16. background: #d2dee9;
  17. }
  18. }
  19. &__title {
  20. padding: 5px;
  21. font-size: 16px;
  22. color: #004d7b;
  23. font-family: $fontcuprum;
  24. text-align: center;
  25. padding-bottom: 0;
  26. display: -webkit-flex;
  27. display: -ms-flex;
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. align-content: center;
  32. min-height: 60px;
  33. }
  34. &__description {
  35. padding: 5px;
  36. text-align: center;
  37. font-family: $fontcuprum;
  38. font-size: 14px;
  39. color: #929292;
  40. display: -webkit-flex;
  41. display: -ms-flex;
  42. display: flex;
  43. justify-content: center;
  44. align-items: center;
  45. align-content: center;
  46. min-height: 60px;
  47. }
  48. &__imgcase {
  49. display: block;
  50. margin: auto;
  51. margin-bottom: 5px;
  52. }
  53. &__img {
  54. width: 100%;
  55. max-width: 200px;
  56. height: 100%;
  57. max-height: 130px;
  58. }
  59. &__address {
  60. background: #ebebeb;
  61. padding: 5px;
  62. min-height: 50px;
  63. color: #929292;
  64. font-size: 13px;
  65. text-align: center;
  66. line-height: 15px;
  67. display: -webkit-flex;
  68. display: -ms-flex;
  69. display: flex;
  70. justify-content: center;
  71. align-items: center;
  72. align-content: center;
  73. font-family: $fontcuprum;
  74. }
  75. &__item:hover {
  76. border-color: #d2dee9;
  77. }
  78. &__item:hover &__address {
  79. background: #d2dee9;
  80. }
  81. }