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.

407 lines
6.7 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. }
  204. .page-header {
  205. background: lighten($ui-base-color, 8%);
  206. box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
  207. border-radius: 4px;
  208. padding: 60px 15px;
  209. text-align: center;
  210. margin: 10px 0;
  211. h1 {
  212. color: $primary-text-color;
  213. font-size: 36px;
  214. line-height: 1.1;
  215. font-weight: 700;
  216. margin-bottom: 10px;
  217. }
  218. p {
  219. font-size: 15px;
  220. color: $darker-text-color;
  221. }
  222. }
  223. .directory {
  224. background: $ui-base-color;
  225. border-radius: 0 0 4px 4px;
  226. box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
  227. &__tag {
  228. box-sizing: border-box;
  229. margin-bottom: 10px;
  230. a {
  231. display: flex;
  232. align-items: center;
  233. justify-content: space-between;
  234. background: $ui-base-color;
  235. border-radius: 4px;
  236. padding: 15px;
  237. text-decoration: none;
  238. color: inherit;
  239. box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
  240. &:hover,
  241. &:active,
  242. &:focus {
  243. background: lighten($ui-base-color, 8%);
  244. }
  245. }
  246. &.active a {
  247. background: $ui-highlight-color;
  248. cursor: default;
  249. }
  250. h4 {
  251. flex: 1 1 auto;
  252. font-size: 18px;
  253. font-weight: 700;
  254. color: $primary-text-color;
  255. .fa {
  256. color: $darker-text-color;
  257. }
  258. small {
  259. display: block;
  260. font-weight: 400;
  261. font-size: 15px;
  262. margin-top: 8px;
  263. color: $darker-text-color;
  264. }
  265. }
  266. &.active h4 {
  267. &,
  268. .fa,
  269. small {
  270. color: $primary-text-color;
  271. }
  272. }
  273. .avatar-stack {
  274. flex: 0 0 auto;
  275. width: (36px + 4px) * 3;
  276. }
  277. &.active .avatar-stack .account__avatar {
  278. border-color: $ui-highlight-color;
  279. }
  280. }
  281. }
  282. .avatar-stack {
  283. display: flex;
  284. justify-content: flex-end;
  285. .account__avatar {
  286. flex: 0 0 auto;
  287. width: 36px;
  288. height: 36px;
  289. border-radius: 50%;
  290. position: relative;
  291. margin-left: -10px;
  292. border: 2px solid $ui-base-color;
  293. &:nth-child(1) {
  294. z-index: 1;
  295. }
  296. &:nth-child(2) {
  297. z-index: 2;
  298. }
  299. &:nth-child(3) {
  300. z-index: 3;
  301. }
  302. }
  303. }
  304. .accounts-table {
  305. width: 100%;
  306. .account {
  307. padding: 0;
  308. border: 0;
  309. }
  310. thead th {
  311. text-align: center;
  312. text-transform: uppercase;
  313. color: $darker-text-color;
  314. font-weight: 700;
  315. padding: 10px;
  316. &:first-child {
  317. text-align: left;
  318. }
  319. }
  320. tbody td {
  321. padding: 15px 0;
  322. vertical-align: middle;
  323. border-bottom: 1px solid lighten($ui-base-color, 8%);
  324. }
  325. tbody tr:last-child td {
  326. border-bottom: 0;
  327. }
  328. &__count {
  329. width: 120px;
  330. text-align: center;
  331. font-size: 15px;
  332. font-weight: 500;
  333. color: $primary-text-color;
  334. small {
  335. display: block;
  336. color: $darker-text-color;
  337. font-weight: 400;
  338. font-size: 14px;
  339. }
  340. }
  341. }