logo

pleroma

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

static-fe.css (2735B)


  1. body {
  2. background-color: #282c37;
  3. font-family: sans-serif;
  4. color: white;
  5. }
  6. main {
  7. margin: 50px auto;
  8. max-width: 960px;
  9. padding: 40px;
  10. background-color: #313543;
  11. border-radius: 4px;
  12. }
  13. header {
  14. margin: 50px auto;
  15. max-width: 960px;
  16. padding: 40px;
  17. background-color: #313543;
  18. border-radius: 4px;
  19. }
  20. .activity {
  21. border-radius: 4px;
  22. padding: 1em;
  23. padding-bottom: 2em;
  24. margin-bottom: 1em;
  25. }
  26. .avatar {
  27. cursor: pointer;
  28. }
  29. .avatar img {
  30. float: left;
  31. border-radius: 4px;
  32. margin-right: 4px;
  33. }
  34. .activity-content img, video, audio {
  35. padding: 1em;
  36. max-width: 800px;
  37. max-height: 800px;
  38. }
  39. #selected {
  40. background-color: #1b2735;
  41. }
  42. .counts dt, .counts dd {
  43. float: left;
  44. margin-left: 1em;
  45. }
  46. a {
  47. color: white;
  48. }
  49. .h-card {
  50. min-height: 48px;
  51. margin-bottom: 8px;
  52. }
  53. header a, .h-card a {
  54. text-decoration: none;
  55. }
  56. header a:hover, .h-card a:hover {
  57. text-decoration: underline;
  58. }
  59. .display-name {
  60. padding-top: 4px;
  61. display: block;
  62. text-overflow: ellipsis;
  63. overflow: hidden;
  64. color: white;
  65. }
  66. /* keep emoji from being hilariously huge */
  67. .display-name img {
  68. max-height: 1em;
  69. max-width: 1em;
  70. }
  71. .display-name .nickname {
  72. padding-top: 4px;
  73. display: block;
  74. }
  75. .nickname:hover {
  76. text-decoration: none;
  77. }
  78. .pull-right {
  79. float: right;
  80. }
  81. .collapse {
  82. margin: 0;
  83. width: auto;
  84. }
  85. h1 {
  86. margin: 0;
  87. }
  88. h2 {
  89. color: #9baec8;
  90. font-weight: normal;
  91. font-size: 20px;
  92. margin-bottom: 40px;
  93. }
  94. form {
  95. width: 100%;
  96. }
  97. input {
  98. box-sizing: border-box;
  99. width: 100%;
  100. padding: 10px;
  101. margin-top: 20px;
  102. background-color: rgba(0,0,0,.1);
  103. color: white;
  104. border: 0;
  105. border-bottom: 2px solid #9baec8;
  106. font-size: 14px;
  107. }
  108. input:focus {
  109. border-bottom: 2px solid #4b8ed8;
  110. }
  111. input[type="checkbox"] {
  112. width: auto;
  113. }
  114. button {
  115. box-sizing: border-box;
  116. width: 100%;
  117. color: white;
  118. background-color: #419bdd;
  119. border-radius: 4px;
  120. border: none;
  121. padding: 10px;
  122. margin-top: 30px;
  123. text-transform: uppercase;
  124. font-weight: 500;
  125. font-size: 16px;
  126. }
  127. .alert-danger {
  128. box-sizing: border-box;
  129. width: 100%;
  130. color: #D8000C;
  131. background-color: #FFD2D2;
  132. border-radius: 4px;
  133. border: none;
  134. padding: 10px;
  135. margin-top: 20px;
  136. font-weight: 500;
  137. font-size: 16px;
  138. }
  139. .alert-info {
  140. box-sizing: border-box;
  141. width: 100%;
  142. color: #00529B;
  143. background-color: #BDE5F8;
  144. border-radius: 4px;
  145. border: none;
  146. padding: 10px;
  147. margin-top: 20px;
  148. font-weight: 500;
  149. font-size: 16px;
  150. }
  151. img.emoji {
  152. width: 32px;
  153. height: 32px;
  154. padding: 0;
  155. vertical-align: middle;
  156. }