_company-preview.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. .company-preview {
  2. $this: &;
  3. padding-top: 24px;
  4. padding-bottom: 24px;
  5. padding-left: 18px;
  6. padding-right: 18px;
  7. border-radius: 8px;
  8. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.135216);
  9. transition: box-shadow .225s ease,
  10. flex-basis .225s ease;
  11. &:hover {
  12. box-shadow: 0 4px 11px 3px rgba(115, 136, 255, .32);
  13. }
  14. @include for-laptop-up {
  15. flex: 1 1 370px;
  16. }
  17. &__logo-overlay {
  18. display: flex;
  19. justify-content: center;
  20. align-items: center;
  21. height: 112px;
  22. padding-left: 8px;
  23. padding-right: 8px;
  24. border-radius: 8px;
  25. border: 1px solid #c4c4c4;
  26. }
  27. &__logo {
  28. align-self: center;
  29. display: block;
  30. max-height: 100%;
  31. max-width: 100%;
  32. }
  33. &__company-name {
  34. font-size: 20px;
  35. font-weight: 700;
  36. line-height: 38px;
  37. text-align: center;
  38. margin-top: 16px;
  39. }
  40. &__company-link {
  41. color: #292929;
  42. cursor: pointer;
  43. &:hover {
  44. text-decoration: underline;
  45. }
  46. }
  47. &__type {
  48. line-height: 32px;
  49. color: #888888;
  50. display: flex;
  51. justify-content: center;
  52. align-items: center;
  53. margin-top: 8px;
  54. padding-bottom: 8px;
  55. position: relative;
  56. &:after {
  57. content: ' ';
  58. position: absolute;
  59. width: 36px;
  60. height: 2px;
  61. bottom: -2px;
  62. left: 50%;
  63. border-radius: 8px;
  64. background-color: #d8d8d8;
  65. transform: translateX(-50%);
  66. }
  67. }
  68. &__type-icon {
  69. width: 22px;
  70. height: 22px;
  71. color: #1cba6b;
  72. margin-right: 10px;
  73. }
  74. &__site {
  75. line-height: 22px;
  76. display: flex;
  77. align-items: center;
  78. margin-top: 16px;
  79. }
  80. &__site-icon {
  81. width: 18px;
  82. height: 18px;
  83. color: #a8a2a2;
  84. margin-right: 10px;
  85. }
  86. &__site-url {
  87. color: #7388ff;
  88. position: relative;
  89. &:after {
  90. content: ' ';
  91. position: absolute;
  92. left: 0;
  93. bottom: 4px;
  94. width: 100%;
  95. height: 1px;
  96. background-color: #7388ff;
  97. opacity: 0;
  98. transition: opacity .225s ease;
  99. }
  100. &:hover:after {
  101. opacity: 1;
  102. }
  103. }
  104. &__offices {
  105. line-height: 22px;
  106. display: flex;
  107. align-items: center;
  108. margin-top: 18px;
  109. }
  110. &__offices-icon {
  111. flex-shrink: 0;
  112. width: 15px;
  113. height: 15px;
  114. color: #999999;
  115. margin-right: 12px;
  116. }
  117. &__offices-text {
  118. color: #606060;
  119. white-space: nowrap;
  120. margin-right: 16px;
  121. }
  122. &__country-flags {
  123. font-size: 0;
  124. display: flex;
  125. flex-wrap: wrap;
  126. flex-shrink: 0;
  127. width: 90px;
  128. margin-left: -3px;
  129. }
  130. &__country-flag {
  131. width: 22px;
  132. height: 18px;
  133. padding: 3px;
  134. }
  135. }