logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

landing_strip.scss (1725B)


  1. .landing-strip,
  2. .memoriam-strip {
  3. background: rgba(darken($ui-base-color, 7%), 0.8);
  4. color: $ui-primary-color;
  5. font-weight: 400;
  6. padding: 14px;
  7. border-radius: 4px;
  8. margin-bottom: 20px;
  9. display: flex;
  10. align-items: center;
  11. strong,
  12. a {
  13. font-weight: 500;
  14. @each $lang in $cjk-langs {
  15. &:lang(#{$lang}) {
  16. font-weight: 700;
  17. }
  18. }
  19. }
  20. a {
  21. color: inherit;
  22. text-decoration: underline;
  23. }
  24. .logo {
  25. width: 30px;
  26. height: 30px;
  27. flex: 0 0 auto;
  28. margin-right: 15px;
  29. }
  30. @media screen and (max-width: 740px) {
  31. margin-bottom: 0;
  32. }
  33. }
  34. .memoriam-strip {
  35. background: rgba($base-shadow-color, 0.7);
  36. }
  37. .moved-strip {
  38. padding: 14px;
  39. border-radius: 4px;
  40. background: rgba(darken($ui-base-color, 7%), 0.8);
  41. color: $ui-secondary-color;
  42. font-weight: 400;
  43. margin-bottom: 20px;
  44. strong,
  45. a {
  46. font-weight: 500;
  47. @each $lang in $cjk-langs {
  48. &:lang(#{$lang}) {
  49. font-weight: 700;
  50. }
  51. }
  52. }
  53. a {
  54. color: inherit;
  55. text-decoration: underline;
  56. &.mention {
  57. text-decoration: none;
  58. span {
  59. text-decoration: none;
  60. }
  61. &:focus,
  62. &:hover,
  63. &:active {
  64. text-decoration: none;
  65. span {
  66. text-decoration: underline;
  67. }
  68. }
  69. }
  70. }
  71. &__message {
  72. margin-bottom: 15px;
  73. .fa {
  74. margin-right: 5px;
  75. color: $ui-primary-color;
  76. }
  77. }
  78. &__card {
  79. .detailed-status__display-avatar {
  80. position: relative;
  81. cursor: pointer;
  82. }
  83. .detailed-status__display-name {
  84. margin-bottom: 0;
  85. text-decoration: none;
  86. span {
  87. color: $ui-highlight-color;
  88. font-weight: 400;
  89. }
  90. }
  91. }
  92. }