sections.css 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  1. .add-actor-button-container {
  2. -moz-mask-image: url(../../icons/add-actor.svg);
  3. -o-mask-image: url(../../icons/add-actor.svg);
  4. -webkit-mask-image: url(../../icons/add-actor.svg);
  5. mask-image: url(../../icons/add-actor.svg);
  6. }
  7. .alert, .alert-danger, .form-error, .form-row-widget-error {
  8. align-items: center;
  9. background-color: #FF634733;
  10. border: solid 2px #ff6347;
  11. border-radius: var(--s);
  12. display: inline-flex;
  13. font-style: italic;
  14. justify-content: space-between;
  15. margin-bottom: 6px;
  16. margin-top: 6px;
  17. padding: 2px 6px;
  18. }
  19. .avatar {
  20. border-radius: 2px;
  21. height: auto;
  22. margin-right: 5px;
  23. max-height: 4rem;
  24. max-width: 4rem;
  25. min-width: var(--xxl);
  26. width: 100%;
  27. }
  28. .button-container {
  29. background-color: var(--foreground);
  30. border: none !important;
  31. display: inline-block;
  32. height: var(--unit);
  33. mask-repeat: no-repeat !important;
  34. mask-size: cover !important;
  35. opacity: .33;
  36. width: var(--unit);
  37. }
  38. .button-container:focus, .button-container:hover {
  39. background-color: var(--accent);
  40. border: none !important;
  41. mask-repeat: no-repeat !important;
  42. mask-size: cover !important;
  43. opacity: 1;
  44. }
  45. .button-container:not(:first-of-type) {
  46. margin-left: var(--s);
  47. }
  48. .container-block {
  49. display: block;
  50. }
  51. .container-grid {
  52. display: grid;
  53. gap: var(--s);
  54. grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  55. }
  56. .details-subtitle-summary + * {
  57. background: var(--gradient);
  58. border-radius: var(--s);
  59. padding: 2px 8px;
  60. }
  61. .details-subtitle-summary a, .details-title-summary a {
  62. line-height: initial;
  63. }
  64. .details-subtitle-summary svg:last-child, .details-title-summary svg:last-child {
  65. margin-left: 4px;
  66. }
  67. .details-subtitle-summary ~ [class|="form-row"] {
  68. font-size: .937rem;
  69. max-font-size: .937rem !important;
  70. padding: var(--s);
  71. }
  72. .footer ul {
  73. display: flex;
  74. flex-wrap: wrap;
  75. }
  76. .footer ul li {
  77. margin-right: var(--s);
  78. }
  79. .form-row {
  80. display: flex;
  81. flex-direction: column;
  82. margin-bottom: var(--s);
  83. }
  84. .form-row-help {
  85. font-style: italic;
  86. margin-bottom: unset;
  87. }
  88. .form-row-widget {
  89. display: block;
  90. width: 100%;
  91. }
  92. .form-search {
  93. display: inline-block;
  94. margin-bottom: var(--m);
  95. padding: unset !important;
  96. }
  97. .form-search .form-row {
  98. margin-bottom: unset;
  99. width: 100%;
  100. }
  101. .form-search label {
  102. display: block;
  103. height: 0;
  104. opacity: 0;
  105. width: 0;
  106. }
  107. .form-search span {
  108. display: inline-flex;
  109. width: 100%;
  110. }
  111. .form-search span button {
  112. border-bottom-left-radius: 0;
  113. border-left: none !important;
  114. border-top-left-radius: 0;
  115. height: 100%;
  116. margin: unset;
  117. }
  118. .form-search span input[type='text'] {
  119. border-bottom-right-radius: 0;
  120. border-top-right-radius: 0;
  121. height: 100%;
  122. margin: unset;
  123. }
  124. .frame-section {
  125. background-color: var(--background-card) !important;
  126. border: 1px solid var(--border) !important;
  127. border-radius: var(--s);
  128. box-shadow: var(--shadow);
  129. display: flex;
  130. flex-direction: column;
  131. margin-bottom: var(--m);
  132. }
  133. .frame-section hr {
  134. margin-bottom: var(--s);
  135. }
  136. .frame-section-button-like {
  137. align-self: end;
  138. background: var(--gradient);
  139. border: 1px solid var(--border);
  140. border-radius: var(--s);
  141. display: block;
  142. font-family: 'Poppins', sans-serif;
  143. font-weight: 700;
  144. padding: 6px 8px;
  145. width: max-content;
  146. }
  147. .frame-section-padding {
  148. padding: var(--s);
  149. }
  150. .frame-section-paging {
  151. display: block;
  152. font-family: 'Poppins', sans-serif;
  153. font-weight: 700;
  154. margin-left: auto;
  155. margin-top: var(--s);
  156. padding: 6px 12px;
  157. }
  158. .frame-section-title {
  159. margin-left: unset;
  160. }
  161. .profile {
  162. background: var(--gradient) !important;
  163. border: 1px solid var(--border);
  164. border-radius: var(--s);
  165. font-family: 'Open Sans', sans-serif;
  166. margin-bottom: var(--s);
  167. padding: var(--unit);
  168. }
  169. .profile header {
  170. display: flex;
  171. flex-wrap: wrap;
  172. justify-content: space-between;
  173. vertical-align: middle;
  174. }
  175. .profile-bio {
  176. margin-top: 4px;
  177. }
  178. .profile-bio, .profile-info-url {
  179. word-break: break-all;
  180. }
  181. .profile-extra-actions {
  182. background: var(--gradient), var(--background-hard);
  183. border: 1px solid var(--border);
  184. border-radius: var(--s);
  185. display: inline-block;
  186. font-weight: 700;
  187. margin-right: var(--s);
  188. margin-top: var(--s);
  189. padding: 4px 8px;
  190. }
  191. .profile-info {
  192. display: flex;
  193. flex-wrap: wrap;
  194. }
  195. .profile-info .avatar {
  196. flex: .5;
  197. }
  198. .profile-info section {
  199. flex: 1;
  200. }
  201. .profile-info-url {
  202. display: block;
  203. }
  204. .profile-info-url > * {
  205. display: block;
  206. }
  207. .profile-info-url-nickname {
  208. font-size: var(--m);
  209. }
  210. .profile-info-url-remote {
  211. opacity: .66;
  212. }
  213. .profile-navigation > * {
  214. display: block;
  215. }
  216. .profile-stats {
  217. align-self: center;
  218. font-size: .937rem;
  219. margin-left: auto;
  220. opacity: .66;
  221. text-align: right;
  222. }
  223. .profile-stats-subscribers strong, .profile-stats-subscriptions strong {
  224. margin-right: 4px;
  225. }
  226. .profile-stats-subscribers, .profile-stats-subscriptions {
  227. display: block;
  228. }
  229. .profile-tags {
  230. margin: 4px unset unset;
  231. }
  232. .remove-actor-button-container {
  233. -moz-mask-image: url(../../icons/remove-actor.svg);
  234. -o-mask-image: url(../../icons/remove-actor.svg);
  235. -webkit-mask-image: url(../../icons/remove-actor.svg);
  236. mask-image: url(../../icons/remove-actor.svg);
  237. }
  238. .section-details-subtitle .section-details-subtitle:not(:last-of-type) {
  239. margin-bottom: var(--s);
  240. }
  241. .section-details-subtitle summary {
  242. padding: 2px 8px;
  243. }
  244. .section-details-subtitle summary > *, .section-details-title summary > * {
  245. display: inline-block;
  246. vertical-align: baseline;
  247. }
  248. .section-details-subtitle summary > :last-child, .section-details-title summary > :last-child {
  249. margin-right: 4px;
  250. }
  251. .section-details-subtitle summary, .section-details-title summary {
  252. background: var(--gradient);
  253. border-radius: var(--s);
  254. display: inline-block;
  255. width: 100%;
  256. }
  257. .details-summary-title:after {
  258. content: "\2193";
  259. float: right;
  260. }
  261. .details-summary-subtitle:after {
  262. content: "\2191";
  263. float: right;
  264. }
  265. .section-details-subtitle:not([open]) > .details-summary-subtitle:after {
  266. animation: fadeOut 200ms cubic-bezier(0, 0.55, 0.45, 1);
  267. transform: rotate(180deg);
  268. }
  269. .section-details-subtitle[open] > .details-summary-subtitle:after {
  270. animation: fadeIn 200ms cubic-bezier(0, 0.55, 0.45, 1);
  271. transform: initial;
  272. }
  273. .section-details-title:not([open]) > .details-summary-title:after {
  274. animation: fadeIn 200ms cubic-bezier(0, 0.55, 0.45, 1);
  275. transform: initial;
  276. }
  277. .section-details-title[open] > .details-summary-title:after {
  278. animation: fadeOut 200ms cubic-bezier(0, 0.55, 0.45, 1);
  279. transform: rotate(180deg);
  280. }
  281. .details-summary-title {
  282. padding: 6px 12px;
  283. }
  284. .section-form {
  285. background-color: var(--background-hard);
  286. border-radius: var(--s);
  287. display: block;
  288. max-width: 100%;
  289. padding: var(--s);
  290. width: 100%;
  291. }
  292. .section-form .section-details-subtitle summary {
  293. border: 1px solid var(--border);
  294. }
  295. .section-form-legend {
  296. font-weight: 700;
  297. margin-bottom: var(--s);
  298. margin-top: unset;
  299. }
  300. .section-title {
  301. font-weight: 700;
  302. margin-bottom: unset;
  303. }
  304. textarea.form-row-widget {
  305. height: 7rem;
  306. resize: vertical;
  307. }