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.

235 lines
3.9 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. 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. p {
  111. margin-bottom: 10px;
  112. &:last-child {
  113. margin-bottom: 0;
  114. }
  115. }
  116. &__mail {
  117. margin-top: 10px;
  118. a {
  119. color: $primary-text-color;
  120. text-decoration: none;
  121. }
  122. }
  123. }
  124. .moved-account-widget {
  125. padding: 15px;
  126. padding-bottom: 20px;
  127. border-radius: 4px;
  128. background: $ui-base-color;
  129. box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
  130. color: $secondary-text-color;
  131. font-weight: 400;
  132. margin-bottom: 10px;
  133. strong,
  134. a {
  135. font-weight: 500;
  136. @each $lang in $cjk-langs {
  137. &:lang(#{$lang}) {
  138. font-weight: 700;
  139. }
  140. }
  141. }
  142. a {
  143. color: inherit;
  144. text-decoration: underline;
  145. &.mention {
  146. text-decoration: none;
  147. span {
  148. text-decoration: none;
  149. }
  150. &:focus,
  151. &:hover,
  152. &:active {
  153. text-decoration: none;
  154. span {
  155. text-decoration: underline;
  156. }
  157. }
  158. }
  159. }
  160. &__message {
  161. margin-bottom: 15px;
  162. .fa {
  163. margin-right: 5px;
  164. color: $darker-text-color;
  165. }
  166. }
  167. &__card {
  168. .detailed-status__display-avatar {
  169. position: relative;
  170. cursor: pointer;
  171. }
  172. .detailed-status__display-name {
  173. margin-bottom: 0;
  174. text-decoration: none;
  175. span {
  176. font-weight: 400;
  177. }
  178. }
  179. }
  180. }
  181. .memoriam-widget {
  182. padding: 20px;
  183. border-radius: 4px;
  184. background: $base-shadow-color;
  185. box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
  186. font-size: 14px;
  187. color: $darker-text-color;
  188. margin-bottom: 10px;
  189. }
  190. .moved-account-widget,
  191. .memoriam-widget {
  192. @media screen and (max-width: $no-gap-breakpoint) {
  193. margin-bottom: 0;
  194. box-shadow: none;
  195. border-radius: 0;
  196. }
  197. }