You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

242 lines
4.0 KiB

  1. .hero-widget {
  2. margin-bottom: 10px;
  3. box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
  4. &__img {
  5. width: 100%;
  6. height: 167px;
  7. position: relative;
  8. overflow: hidden;
  9. border-radius: 4px 4px 0 0;
  10. background: $base-shadow-color;
  11. img {
  12. object-fit: cover;
  13. display: block;
  14. width: 100%;
  15. height: 100%;
  16. margin: 0;
  17. border-radius: 4px 4px 0 0;
  18. }
  19. }
  20. &__text {
  21. background: $ui-base-color;
  22. padding: 20px;
  23. border-radius: 0 0 4px 4px;
  24. font-size: 15px;
  25. color: $darker-text-color;
  26. line-height: 20px;
  27. word-wrap: break-word;
  28. font-weight: 400;
  29. .emojione {
  30. width: 20px;
  31. height: 20px;
  32. margin: -3px 0 0;
  33. }
  34. p {
  35. margin-bottom: 20px;
  36. &:last-child {
  37. margin-bottom: 0;
  38. }
  39. }
  40. em {
  41. display: inline;
  42. margin: 0;
  43. padding: 0;
  44. font-weight: 700;
  45. background: transparent;
  46. font-family: inherit;
  47. font-size: inherit;
  48. line-height: inherit;
  49. color: lighten($darker-text-color, 10%);
  50. }
  51. a {
  52. color: $secondary-text-color;
  53. text-decoration: none;
  54. &:hover {
  55. text-decoration: underline;
  56. }
  57. }
  58. }
  59. @media screen and (max-width: $no-gap-breakpoint) {
  60. display: none;
  61. }
  62. }
  63. .endorsements-widget {
  64. margin-bottom: 10px;
  65. padding-bottom: 10px;
  66. h4 {
  67. padding: 10px;
  68. text-transform: uppercase;
  69. font-weight: 700;
  70. font-size: 13px;
  71. color: $darker-text-color;
  72. }
  73. .account {
  74. padding: 10px 0;
  75. &:last-child {
  76. border-bottom: 0;
  77. }
  78. .account__display-name {
  79. display: flex;
  80. align-items: center;
  81. }
  82. .account__avatar {
  83. width: 44px;
  84. height: 44px;
  85. background-size: 44px 44px;
  86. }
  87. }
  88. }
  89. .box-widget {
  90. padding: 20px;
  91. border-radius: 4px;
  92. background: $ui-base-color;
  93. box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
  94. }
  95. .contact-widget,
  96. .landing-page__information.contact-widget {
  97. box-sizing: border-box;
  98. padding: 20px;
  99. min-height: 100%;
  100. border-radius: 4px;
  101. background: $ui-base-color;
  102. box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
  103. }
  104. .contact-widget {
  105. font-size: 15px;
  106. color: $darker-text-color;
  107. line-height: 20px;
  108. word-wrap: break-word;
  109. font-weight: 400;
  110. strong {
  111. font-weight: 500;
  112. }
  113. p {
  114. margin-bottom: 10px;
  115. &:last-child {
  116. margin-bottom: 0;
  117. }
  118. }
  119. &__mail {
  120. margin-top: 10px;
  121. a {
  122. color: $primary-text-color;
  123. text-decoration: none;
  124. }
  125. }
  126. }
  127. .moved-account-widget {
  128. padding: 15px;
  129. padding-bottom: 20px;
  130. border-radius: 4px;
  131. background: $ui-base-color;
  132. box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
  133. color: $secondary-text-color;
  134. font-weight: 400;
  135. margin-bottom: 10px;
  136. strong,
  137. a {
  138. font-weight: 500;
  139. @each $lang in $cjk-langs {
  140. &:lang(#{$lang}) {
  141. font-weight: 700;
  142. }
  143. }
  144. }
  145. a {
  146. color: inherit;
  147. text-decoration: underline;
  148. &.mention {
  149. text-decoration: none;
  150. span {
  151. text-decoration: none;
  152. }
  153. &:focus,
  154. &:hover,
  155. &:active {
  156. text-decoration: none;
  157. span {
  158. text-decoration: underline;
  159. }
  160. }
  161. }
  162. }
  163. &__message {
  164. margin-bottom: 15px;
  165. .fa {
  166. margin-right: 5px;
  167. color: $darker-text-color;
  168. }
  169. }
  170. &__card {
  171. .detailed-status__display-avatar {
  172. position: relative;
  173. cursor: pointer;
  174. }
  175. .detailed-status__display-name {
  176. margin-bottom: 0;
  177. text-decoration: none;
  178. span {
  179. font-weight: 400;
  180. }
  181. }
  182. }
  183. }
  184. .memoriam-widget {
  185. padding: 20px;
  186. border-radius: 4px;
  187. background: $base-shadow-color;
  188. box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
  189. font-size: 14px;
  190. color: $darker-text-color;
  191. margin-bottom: 10px;
  192. }
  193. .moved-account-widget,
  194. .memoriam-widget,
  195. .box-widget,
  196. .contact-widget,
  197. .landing-page__information.contact-widget {
  198. @media screen and (max-width: $no-gap-breakpoint) {
  199. margin-bottom: 0;
  200. box-shadow: none;
  201. border-radius: 0;
  202. }
  203. }