style.css 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000
  1. /* General styles*/
  2. span {
  3. padding: 2px;
  4. }
  5. .styled-link {
  6. color: #FFA500;
  7. text-decoration: none;
  8. }
  9. p {
  10. white-space: pre-wrap;
  11. }
  12. hr {
  13. border: none;
  14. border-top: 1px solid #FFA500;
  15. margin: 10px 0;
  16. width: 100%;
  17. }
  18. /* Textarea, input, select styles */
  19. textarea, input, select {
  20. background-color: #444;
  21. color: #FFA500;
  22. border: 1px solid #333;
  23. padding: 10px;
  24. border-radius: 5px;
  25. width: 80%;
  26. font-size: 1em;
  27. margin-top: 10px;
  28. }
  29. input[type="text"], input[type="email"], input[type="password"], textarea {
  30. margin-bottom: 15px;
  31. }
  32. /* Body and overall page styles */
  33. html {
  34. color: #FFA500;
  35. }
  36. body {
  37. font-family: sans-serif;
  38. background-color: #000;
  39. color: #FFA500;
  40. margin: 0;
  41. padding: 0;
  42. display: flex;
  43. flex-direction: column;
  44. }
  45. /* Link styles */
  46. a {
  47. color: #FFA500;
  48. text-decoration: underline;
  49. }
  50. a:hover {
  51. text-decoration: underline;
  52. }
  53. .header {
  54. display: flex;
  55. justify-content: space-between;
  56. padding: 10px;
  57. align-items: center;
  58. }
  59. .header-content {
  60. display: flex;
  61. align-items: center;
  62. flex-wrap: nowrap;
  63. overflow: hidden;
  64. }
  65. .avatar-profile {
  66. width: 40px;
  67. height: 40px;
  68. border-radius: 50%;
  69. margin-right: 10px;
  70. }
  71. .created-at,
  72. .author-name,
  73. .about-time,
  74. .time {
  75. margin-right: 10px;
  76. white-space: nowrap;
  77. }
  78. .author-name {
  79. font-weight: bold;
  80. }
  81. .created-at,
  82. .about-time,
  83. .time {
  84. font-size: 0.9rem;
  85. color: #ccc;
  86. }
  87. .time {
  88. font-size: 0.8rem;
  89. color: gray;
  90. }
  91. .time a {
  92. color: inherit;
  93. text-decoration: none;
  94. }
  95. form-button-group {
  96. display: flex;
  97. gap: 10px;
  98. flex-wrap: nowrap;
  99. justify-content: start;
  100. }
  101. .wallet-form-button-group-center {
  102. display: inline-flex;
  103. gap: 10px;
  104. justify-content: space-between;
  105. padding: 10px;
  106. align-items: center;
  107. }
  108. .conn-buttons {
  109. display: inline-flex;
  110. justify-content: space-between;
  111. padding: 10px;
  112. align-items: center;
  113. gap: 10px;
  114. }
  115. .left-bar {
  116. display: flex;
  117. align-items: center;
  118. }
  119. .right-bar {
  120. display: flex;
  121. align-items: center;
  122. }
  123. .search-input {
  124. width: 380px;
  125. height: 38px;
  126. }
  127. nav ul {
  128. list-style-type: none;
  129. padding: 0;
  130. }
  131. nav ul li {
  132. margin: 5px 0;
  133. }
  134. /* Logo and Navigation */
  135. .logo-icon {
  136. width: 50px;
  137. height: auto;
  138. margin-right: 15px;
  139. }
  140. nav ul {
  141. display: flex;
  142. list-style: none;
  143. margin: 0;
  144. }
  145. nav ul a {
  146. color: #FFA500;
  147. text-decoration: underline;
  148. padding: 10px;
  149. display: flex;
  150. }
  151. nav ul li {
  152. margin-right: 10px;
  153. padding: 2px;
  154. }
  155. nav ul li a {
  156. color: #FFA500;
  157. text-decoration: none;
  158. padding: 2px;
  159. display: block;
  160. }
  161. nav ul li a:hover {
  162. color: #FFD700;
  163. padding: 2px;
  164. text-decoration: underline;
  165. }
  166. /* nav menus */
  167. .oasis-nav-group {
  168. list-style: none;
  169. margin-bottom: 0.75rem;
  170. }
  171. .oasis-nav-toggle {
  172. display: none;
  173. }
  174. .oasis-nav-header {
  175. display: flex;
  176. align-items: center;
  177. justify-content: flex-start;
  178. cursor: pointer;
  179. padding: 0.5rem 0.75rem;
  180. font-weight: 600;
  181. font-size: 0.8rem;
  182. text-transform: uppercase;
  183. letter-spacing: 0.05em;
  184. color: #ffb400;
  185. transition: background 0.2s ease, color 0.2s ease;
  186. text-align: left;
  187. border: 1px solid rgba(255, 180, 0, 0.6);
  188. border-radius: 4px;
  189. margin: 0 0.25rem;
  190. box-sizing: border-box;
  191. }
  192. .oasis-nav-header:hover {
  193. background: rgba(255, 255, 255, 0.05);
  194. color: #ffd36a;
  195. }
  196. .oasis-nav-arrow {
  197. font-size: 0.7rem;
  198. margin-left: auto;
  199. transition: transform 0.2s ease;
  200. }
  201. .oasis-nav-header + .oasis-nav-list {
  202. margin-top: 0.35rem;
  203. }
  204. .oasis-nav-list {
  205. max-height: 0;
  206. overflow: hidden;
  207. transition: max-height 0.25s ease-out;
  208. padding-left: 0;
  209. margin: 0 0 0 0.75rem;
  210. }
  211. .oasis-nav-toggle:checked + .oasis-nav-header + .oasis-nav-list {
  212. max-height: 1000px;
  213. }
  214. .oasis-nav-toggle:checked + .oasis-nav-header .oasis-nav-arrow {
  215. transform: rotate(180deg);
  216. }
  217. .oasis-nav-list li {
  218. list-style: none;
  219. padding: 0;
  220. margin: 0;
  221. }
  222. .oasis-nav-list li a {
  223. display: flex;
  224. align-items: center;
  225. padding: 0.35rem 1.25rem 0.35rem 1.5rem;
  226. font-size: 0.85rem;
  227. text-decoration: none;
  228. opacity: 0.85;
  229. transition: opacity 0.15s ease;
  230. }
  231. .oasis-nav-list li a:hover {
  232. opacity: 1;
  233. }
  234. .oasis-nav-list .emoji {
  235. margin-right: 0.4rem;
  236. }
  237. .oasis-header-marquee {
  238. flex: 1;
  239. display: flex;
  240. align-items: center;
  241. justify-content: center;
  242. overflow: hidden;
  243. white-space: nowrap;
  244. font-size: 0.78rem;
  245. color: #ffc45a;
  246. }
  247. .oasis-header-marquee-inner {
  248. display: inline-block;
  249. padding: 0 1rem;
  250. animation: oasis-marquee 30s linear infinite;
  251. }
  252. .oasis-marquee-item {
  253. margin: 0 0.4rem;
  254. opacity: 0.9;
  255. }
  256. .oasis-marquee-separator {
  257. margin: 0 0.4rem;
  258. opacity: 0.5;
  259. }
  260. @keyframes oasis-marquee {
  261. 0% { transform: translateX(100%); }
  262. 100% { transform: translateX(-100%); }
  263. }
  264. /* Main content area + Menu */
  265. /*
  266. .main-content { border: 2px solid red !important; }
  267. .sidebar-left { border: 2px solid blue !important; }
  268. .main-column { border: 2px solid green !important; }
  269. .sidebar-right { border: 2px solid orange !important; }
  270. */
  271. .sidebar-left,
  272. .sidebar-right {
  273. background-color: #222;
  274. border: 1px solid #444;
  275. padding: 10px;
  276. min-width: 180px;
  277. max-width: 260px;
  278. flex-shrink: 0;
  279. box-sizing: border-box;
  280. }
  281. .main-content {
  282. display: flex;
  283. flex-direction: row;
  284. flex-wrap: nowrap;
  285. width: 100%;
  286. box-sizing: border-box;
  287. gap: 10px;
  288. min-width: 0;
  289. max-width: 100vw;
  290. }
  291. .main-column pre,
  292. .main-column code {
  293. white-space: pre-wrap;
  294. word-break: break-word;
  295. overflow-wrap: anywhere;
  296. }
  297. .main-column img {
  298. max-width: 100%;
  299. height: auto;
  300. display: block;
  301. }
  302. .main-column {
  303. background-color: #333;
  304. padding: 20px;
  305. flex-grow: 1;
  306. min-width: 0;
  307. max-width: 100%;
  308. border-radius: 5px;
  309. border: 1px solid #333;
  310. box-sizing: border-box;
  311. word-break: break-word;
  312. overflow-wrap: anywhere;
  313. }
  314. .main-column > *,
  315. .main-column details,
  316. .main-column section,
  317. .main-column article {
  318. min-width: 0;
  319. max-width: 100%;
  320. box-sizing: border-box;
  321. overflow-wrap: anywhere;
  322. word-break: break-word;
  323. }
  324. .main-column details,
  325. .main-column section {
  326. width: 100%;
  327. max-width: 100%;
  328. box-sizing: border-box;
  329. }
  330. .sidebar-left nav ul,
  331. .sidebar-right nav ul {
  332. display: block;
  333. }
  334. .sidebar-left nav ul li,
  335. .sidebar-right nav ul li {
  336. margin-bottom: 10px;
  337. }
  338. .sidebar-left nav ul li a,
  339. .sidebar-right nav ul li a,
  340. .header nav ul li a {
  341. display: flex;
  342. align-items: center;
  343. gap: 8px;
  344. padding: 8px 12px;
  345. border-radius: 6px;
  346. background-color: #1d1d1d;
  347. text-decoration: none;
  348. font-size: 15px;
  349. color: #ffa300;
  350. border: 1px solid #333;
  351. transition: background-color 0.2s ease, border-color 0.2s ease;
  352. }
  353. .sidebar-left nav ul li a:hover,
  354. .sidebar-right nav ul li a:hover,
  355. .header nav ul li a:hover {
  356. background-color: #2a2a2a;
  357. border-color: #555;
  358. }
  359. /* Header layout */
  360. .header {
  361. display: flex;
  362. justify-content: space-between;
  363. padding: 10px;
  364. align-items: center;
  365. }
  366. .top-bar-left,
  367. .top-bar-mid,
  368. .top-bar-right {
  369. display: flex;
  370. align-items: center;
  371. gap: 10px;
  372. border: 0px;
  373. }
  374. .top-bar-left {
  375. justify-content: flex-start;
  376. }
  377. .top-bar-mid {
  378. justify-content: center;
  379. }
  380. .top-bar-right {
  381. justify-content: flex-end;
  382. }
  383. .top-bar-left nav ul,
  384. .top-bar-mid nav ul,
  385. .top-bar-right nav ul {
  386. padding: 0;
  387. margin: 0;
  388. overflow-x: auto;
  389. }
  390. .logo-icon {
  391. width: 40px;
  392. height: 40px;
  393. margin-right: 10px;
  394. }
  395. /* Section styles */
  396. section {
  397. margin-bottom: 20px;
  398. color: #FFA500;
  399. }
  400. ul {
  401. padding: 1;
  402. margin: 10px 0;
  403. }
  404. ul li {
  405. margin: 10px 0;
  406. }
  407. /* Buttons */
  408. button, input[type="submit"], input[type="button"] {
  409. background-color: #FFA500;
  410. color: #000;
  411. border: 1px solid #FFA500;
  412. padding: 8px 16px;
  413. border-radius: 5px;
  414. cursor: pointer;
  415. font-size: 0.9em;
  416. transition: all 0.3s ease;
  417. margin-top: 4.5px;
  418. }
  419. button:hover, input[type="submit"]:hover, input[type="button"]:hover {
  420. background-color: #FFD700;
  421. border-color: #FFD700;
  422. }
  423. /* Tables */
  424. table {
  425. width: 100%;
  426. border-collapse: collapse;
  427. margin-top: 20px;
  428. border: 1px solid #333;
  429. }
  430. table th, table td {
  431. padding: 10px;
  432. border: 1px solid #444;
  433. text-align: left;
  434. }
  435. table th {
  436. background-color: #222;
  437. }
  438. table tr:nth-child(even) {
  439. background-color: #444;
  440. }
  441. /* Media queries */
  442. @media (max-width: 768px) {
  443. .main-content {
  444. flex-direction: column;
  445. gap: 20px;
  446. }
  447. .sidebar-left, .sidebar-right {
  448. width: 100%;
  449. display: block;
  450. }
  451. .main-column {
  452. width: 100%;
  453. }
  454. }
  455. @media (max-width: 480px) {
  456. body {
  457. font-size: 14px;
  458. }
  459. h1, h2, h3 {
  460. font-size: 1.5em;
  461. }
  462. input, select {
  463. font-size: 0.9em;
  464. }
  465. }
  466. /* general styles */
  467. div {
  468. margin-bottom: 20px;
  469. padding: 20px;
  470. border-radius: 10px;
  471. background-color: #222;
  472. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  473. transition: all 0.3s ease-in-out;
  474. overflow: hidden;
  475. }
  476. div .header-content{
  477. width: 35%;
  478. }
  479. h1 {
  480. color: #FFA500;
  481. font-weight: bold;
  482. margin: 0;
  483. }
  484. .md-mention {
  485. font-size: 1.5em;
  486. font-weight: bold;
  487. margin: 20px 0;
  488. word-wrap: break-word;
  489. overflow-wrap: break-word;
  490. white-space: normal;
  491. user-select: text;
  492. }
  493. article {
  494. font-size: 1.1em;
  495. color: #FFF;
  496. margin-bottom: 20px;
  497. }
  498. .thread-view {
  499. width: 90%;
  500. }
  501. thread-container {
  502. width: 95%;
  503. }
  504. .profile {
  505. display: flex;
  506. flex-direction: column;
  507. align-items: center;
  508. text-align: center;
  509. margin-bottom: 10px;
  510. }
  511. .profile-metrics {
  512. display: flex;
  513. flex-direction: column;
  514. gap: 6px;
  515. }
  516. .profile-metrics .inhabitant-last-activity {
  517. align-self: center;
  518. }
  519. .inhabitant-last-activity .label {
  520. margin-right: 6px;
  521. }
  522. .avatar-container {
  523. display: flex;
  524. flex-direction: column;
  525. align-items: center;
  526. padding: 20px;
  527. border-radius: 16px;
  528. box-shadow: 0 8px 20px rgba(255, 165, 0, 0.25);
  529. max-width: 300px;
  530. margin: 0 auto 20px auto;
  531. transition: transform 0.3s ease;
  532. }
  533. .avatar-container:hover {
  534. transform: scale(1.05);
  535. }
  536. .avatar {
  537. width: 140px;
  538. height: 140px;
  539. border-radius: 50%;
  540. margin-bottom: 12px;
  541. box-shadow: 0 4px 10px rgba(255, 140, 0, 0.4);
  542. object-fit: cover;
  543. transition: border-color 0.3s ease;
  544. }
  545. .avatar:hover {
  546. border-color: #FFA500;
  547. }
  548. .name {
  549. font-size: 1.5em;
  550. font-weight: bold;
  551. }
  552. footer {
  553. clear: both;
  554. margin-top: 20px;
  555. padding: 10px 0;
  556. }
  557. footer div {
  558. display: flex;
  559. gap: 10px;
  560. }
  561. footer a {
  562. background-color: #FFA500;
  563. color: #000;
  564. padding: 8px 16px;
  565. border-radius: 5px;
  566. text-decoration: none;
  567. text-align: center;
  568. margin: 5px 0;
  569. transition: background-color 0.3s ease;
  570. }
  571. footer a:hover {
  572. background-color: #FFD700;
  573. border-color: #FFD700;
  574. }
  575. footer .btn {
  576. background-color: #FFA500;
  577. color: #000;
  578. padding: 8px 16px;
  579. border-radius: 5px;
  580. text-align: center;
  581. text-decoration: none;
  582. }
  583. footer .btn:hover {
  584. background-color: #FFD700;
  585. border-color: #FFD700;
  586. }
  587. footer .btn:hover {
  588. background-color: #007B9F;
  589. }
  590. /* Post preview */
  591. .mention {
  592. font-weight: bold;
  593. color: #ffcc00;
  594. text-decoration: none;
  595. }
  596. .mention:hover {
  597. text-decoration: underline;
  598. }
  599. .post-preview img {
  600. display: block;
  601. margin: 1em 0;
  602. max-width: 100%;
  603. border-radius: 8px;
  604. border: 2px solid #555;
  605. }
  606. .post-preview audio,
  607. .post-preview video {
  608. display: block;
  609. margin: 1.2em 0;
  610. max-width: 100%;
  611. }
  612. .thread-reply-item {
  613. margin-bottom: 18px;
  614. }
  615. .thread-reply-item:last-child {
  616. margin-bottom: 0;
  617. }
  618. .thread-reply-footer {
  619. display: flex;
  620. align-items: center;
  621. gap: 12px;
  622. flex-wrap: wrap;
  623. margin-top: 10px;
  624. padding: 0;
  625. border: none !important;
  626. background: transparent !important;
  627. box-shadow: none !important;
  628. }
  629. .thread-reply-footer .inline-form {
  630. display: inline-flex;
  631. margin: 0;
  632. }
  633. .thread-reply-footer .inline-form button {
  634. margin: 0;
  635. }
  636. .publish-textarea {
  637. min-height: 10em;
  638. padding: 0.75em;
  639. border: 1px solid #444;
  640. border-radius: 6px;
  641. font-family: sans-serif;
  642. font-size: 1em;
  643. line-height: 1.4;
  644. }
  645. .preview-text {
  646. background-color: #444;
  647. color: #FFA500;
  648. border: 1px solid #333;
  649. padding: 10px;
  650. border-radius: 5px;
  651. width: 80%;
  652. font-size: 1em;
  653. white-space: pre-wrap;
  654. word-wrap: break-word;
  655. line-height: 1.4;
  656. }
  657. /* Section, article, and message word-wrap */
  658. section, article, .message, .profile {
  659. word-wrap: break-word;
  660. overflow-wrap: break-word;
  661. word-break: break-word;
  662. }
  663. article img {
  664. max-width: 100%;
  665. height: auto;
  666. object-fit: contain;
  667. display: block;
  668. margin: 0 auto;
  669. }
  670. /* Filters */
  671. button.filter-btn,
  672. button.create-button {
  673. padding: 10px 20px;
  674. margin-right: 10px;
  675. border-radius: 5px;
  676. border: 1px solid;
  677. cursor: pointer;
  678. transition: background-color .2s, border-color .2s;
  679. }
  680. button.filter-btn {
  681. background-color: #ff6600;
  682. border-color: #ff3300;
  683. color: #fff;
  684. }
  685. button.filter-btn:hover,
  686. button.filter-btn.active {
  687. background-color: #ff9900;
  688. border-color: #e68a00;
  689. color: #000;
  690. }
  691. button.create-button {
  692. background-color: #ffcc00;
  693. border-color: #e6b800;
  694. color: #000;
  695. }
  696. button.create-button:hover {
  697. background-color: #e6b800;
  698. border-color: #cca300;
  699. }
  700. /* Bookmarks */
  701. .bookmark-form input[type="text"],
  702. .bookmark-form textarea,
  703. .bookmark-form select {
  704. width: 100%;
  705. padding: 6px;
  706. font-size: 14px;
  707. border: 1px solid #ccc;
  708. border-radius: 4px;
  709. box-sizing: border-box;
  710. }
  711. .bookmark-form input[type="url"] {
  712. max-width: 800px;
  713. }
  714. .bookmark-form textarea {
  715. height: 80px;
  716. }
  717. .bookmark-form select {
  718. width: auto;
  719. max-width: 200px;
  720. }
  721. .bookmark-form label {
  722. margin-bottom: 15px;
  723. padding: 6px;
  724. }
  725. .bookmark-tags {
  726. margin-top: 1em;
  727. }
  728. .bookmark-url {
  729. color: #ff6600;
  730. text-decoration: none;
  731. font-weight: bold;
  732. font-size: 1.2em;
  733. word-wrap: break-word;
  734. margin-bottom: 1em;
  735. }
  736. .bookmark-url:hover {
  737. text-decoration: underline;
  738. }
  739. .filter-box {
  740. padding: 16px 18px;
  741. border-radius: 8px;
  742. border: 1px solid rgba(255, 255, 255, 0.08);
  743. background: rgba(0, 0, 0, 0.18);
  744. }
  745. .filter-box__input {
  746. width: 100%;
  747. box-sizing: border-box;
  748. height: 42px;
  749. padding: 10px 12px;
  750. border-radius: 4px;
  751. border: 1px solid rgba(255, 255, 255, 0.12);
  752. background: rgba(255, 255, 255, 0.12);
  753. color: #ffd700;
  754. outline: none;
  755. }
  756. .filter-box__input::placeholder {
  757. color: rgba(255, 215, 0, 0.75);
  758. }
  759. .filter-box__controls {
  760. display: flex;
  761. gap: 12px;
  762. align-items: center;
  763. margin-top: 14px;
  764. flex-wrap: wrap;
  765. }
  766. .filter-box__select {
  767. box-sizing: border-box;
  768. height: 36px;
  769. padding: 6px 10px;
  770. border-radius: 6px;
  771. border: 1px solid rgba(255, 255, 255, 0.12);
  772. background: rgba(255, 255, 255, 0.12);
  773. color: inherit;
  774. min-width: 170px;
  775. }
  776. .filter-box__button {
  777. height: 36px;
  778. padding: 0 14px;
  779. border-radius: 6px;
  780. border: 1px solid rgba(255, 255, 255, 0.12);
  781. background: rgba(255, 255, 255, 0.16);
  782. color: #ffd700;
  783. }
  784. .bookmark-topbar {
  785. display: flex;
  786. gap: 8px;
  787. flex-wrap: wrap;
  788. align-items: center;
  789. border:0px;
  790. }
  791. .bookmark-topbar-left {
  792. display: flex;
  793. gap: 8px;
  794. flex-wrap: wrap;
  795. align-items: center;
  796. }
  797. .bookmark-topbar-left form {
  798. margin: 0;
  799. }
  800. .bookmark-actions {
  801. display: flex;
  802. gap: 8px;
  803. flex-wrap: wrap;
  804. border: 0px;
  805. }
  806. .tags-header h2 {
  807. color: #ffa300;
  808. }
  809. .tags-container {
  810. display: flex;
  811. flex-wrap: wrap;
  812. }
  813. .tag-link {
  814. display: inline-block;
  815. color: #ff6600;
  816. padding: 0.2em 0.6em;
  817. font-size: 0.9em;
  818. text-decoration: none;
  819. margin-right: 1em;
  820. margin-bottom: 0.5em;
  821. }
  822. .tag-checkboxes-table {
  823. margin-top: 1rem;
  824. width: 100%;
  825. border-collapse: collapse;
  826. color: yellow;
  827. }
  828. .tag-checkboxes-table td {
  829. padding: 0.5rem 1rem;
  830. white-space: nowrap;
  831. vertical-align: middle;
  832. }
  833. .input-checkbox {
  834. transform: scale(1.2);
  835. }
  836. /* Inhabitants */
  837. .inhabitant-card {
  838. display: flex;
  839. flex-wrap: nowrap;
  840. align-items: flex-start;
  841. gap: 1rem;
  842. }
  843. .inhabitant-left {
  844. display: flex;
  845. flex-direction: column;
  846. align-items: center;
  847. gap: 4px;
  848. width: 300px;
  849. flex: 0 0 300px;
  850. }
  851. .inhabitant-left a {
  852. display: block;
  853. width: 100%;
  854. }
  855. .inhabitant-left h2 {
  856. margin: 4px 0 0;
  857. line-height: 1.1;
  858. }
  859. .inhabitant-photo {
  860. width: 100% !important;
  861. height: 100% !important;
  862. border-radius: 50%;
  863. border: 3px solid #ffa500;
  864. display: block;
  865. margin: 0 auto;
  866. }
  867. .inhabitant-photo-details {
  868. width: 100% !important;
  869. height: 100% !important;
  870. max-width: none !important;
  871. object-fit: cover;
  872. border-radius: 50%;
  873. border: 2px solid #ffa500;
  874. display: block;
  875. margin: 0 auto;
  876. }
  877. .inhabitant-details {
  878. display: flex;
  879. flex-direction: column;
  880. gap: 6px;
  881. flex: 1;
  882. min-width: 0;
  883. }
  884. .inhabitant-last-activity {
  885. margin-top: 4px;
  886. display: flex;
  887. border: 0;
  888. align-items: center;
  889. gap: 6px;
  890. }
  891. .activity-dot {
  892. width: 12px;
  893. height: 12px;
  894. border-radius: 50%;
  895. }
  896. .activity-filters{display:grid;grid-template-columns:repeat(6,1fr);gap:16px;margin-bottom:12px}
  897. .activity-filter-col{display:flex;flex-direction:column;gap:8px}
  898. .activity-search{display:flex;gap:12px;align-items:center;margin:14px 0 18px 0;flex-wrap:wrap}
  899. .activity-search-input{min-width:240px;max-width:520px;width:100%}
  900. .post-text-pre{white-space:pre-wrap}
  901. .activity-image-thumb{width:100%;max-width:720px;height:auto;border-radius:14px;object-fit:cover}
  902. .activity-avatar{width:256px;height:256px;}
  903. .activity-pub{display:flex;flex-direction:column;gap:10px;align-items:flex-start}
  904. .activity-pub-title{margin:0}
  905. .activity-pub-title .user-link{display:inline}
  906. .activity-contact-links{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
  907. .activity-contact-arrow{opacity:.85}
  908. .reply-context{margin:0 0 .55rem 0;padding:.5rem .6rem;border-radius:12px;background:rgba(255,255,255,.04)}
  909. .reply-context-author{margin-left:.45rem}
  910. .reply-context-text{margin:.35rem 0 0 0;opacity:.92;font-size:.97em}
  911. .activity-spread-title{margin:.25rem 0 .55rem 0;font-size:1.08em}
  912. .activity-spread-text{line-height:1.45;font-size:1.02em;word-break:break-word;overflow-wrap:anywhere}
  913. .activity-contact {
  914. display: flex;
  915. align-items: center;
  916. gap: 12px;
  917. flex-wrap: wrap;
  918. }
  919. .activity-contact-avatar-link {
  920. display: inline-flex;
  921. align-items: center;
  922. justify-content: center;
  923. }
  924. .activity-contact-avatar {
  925. width: 256px;
  926. height: 256px;
  927. object-fit: cover;
  928. border-radius: 12px;
  929. }
  930. .activity-contact-arrow {
  931. font-weight: 800;
  932. opacity: 0.85;
  933. }
  934. /* Documents */
  935. .pdf-viewer-container {
  936. width: 100%;
  937. max-width: 100%;
  938. background: #1e1e1e;
  939. margin-bottom: 1rem;
  940. padding: 1rem;
  941. border-radius: 6px;
  942. box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  943. }
  944. .pdf-viewer-container canvas {
  945. display: block;
  946. margin: 0 auto;
  947. border: 1px solid #333;
  948. background-color: #fff;
  949. }
  950. .pdf-viewer-container div {
  951. margin-top: 1rem;
  952. }
  953. .pdf-viewer-container button {
  954. background-color: #2d2d2d;
  955. color: #eee;
  956. border: none;
  957. padding: 0.4rem 0.8rem;
  958. font-size: 1rem;
  959. cursor: pointer;
  960. border-radius: 4px;
  961. transition: background-color 0.2s ease;
  962. }
  963. .pdf-viewer-container button:hover {
  964. background-color: #444;
  965. }
  966. .pdf-viewer-container span {
  967. color: #ccc;
  968. margin: 0 1rem;
  969. font-family: monospace;
  970. }
  971. /* CVs */
  972. .cv-photo {
  973. width: 200px;
  974. height: 200px;
  975. object-fit: cover;
  976. border-radius: 50%;
  977. }
  978. .cv-item {
  979. padding: 20px;
  980. border: 1px solid #ddd;
  981. margin-bottom: 20px;
  982. }
  983. .cv-section {
  984. padding: 20px;
  985. }
  986. .no-cv {
  987. padding: 20px;
  988. text-align: center;
  989. }
  990. .checkbox-oasisContributor {
  991. display: table-cell;
  992. align-items: center;
  993. gap: 0.5em;
  994. }
  995. .action-card {
  996. padding: 1em;
  997. border-bottom: 1px solid #333;
  998. margin-bottom: 1em;
  999. }
  1000. .action-meta {
  1001. font-size: 0.9em;
  1002. color: #FFA500;
  1003. }
  1004. .feed-image {
  1005. max-width: 100%;
  1006. height: auto;
  1007. border-radius: 6px;
  1008. }
  1009. .feed-search-form {
  1010. display: flex;
  1011. align-items: center;
  1012. gap: 10px;
  1013. flex-wrap: wrap;
  1014. }
  1015. .feed-search-input {
  1016. flex: 1 1 260px;
  1017. min-width: 220px;
  1018. height: 40px;
  1019. box-sizing: border-box;
  1020. }
  1021. .feed-search-btn {
  1022. height: 40px;
  1023. display: inline-flex;
  1024. align-items: center;
  1025. box-sizing: border-box;
  1026. }
  1027. .type-label {
  1028. font-weight: bold;
  1029. margin-top: 0.5em;
  1030. }
  1031. .content-text {
  1032. margin: 0.5em 0;
  1033. }
  1034. .filters {
  1035. margin-bottom:16px;
  1036. }
  1037. .mode-buttons {
  1038. display:flex; gap:8px; margin-top:16px;
  1039. }
  1040. .mention-avatar {
  1041. width: 50px;
  1042. height: 50px;
  1043. border-radius: 50%;
  1044. margin-right: 10px;
  1045. }
  1046. .tribe-card-image {
  1047. width: 100%;
  1048. max-height: 300px;
  1049. object-fit: cover;
  1050. border-radius: 6px;
  1051. margin-bottom: 8px;
  1052. }
  1053. .tribe-row {
  1054. display: flex;
  1055. gap: 24px;
  1056. margin-bottom: 32px;
  1057. }
  1058. .tribe-card {
  1059. width: 50%;
  1060. background-color: #111;
  1061. padding: 16px;
  1062. border-radius: 8px;
  1063. }
  1064. .tribe-feed {
  1065. width: 50%;
  1066. background-color: #111;
  1067. padding: 16px;
  1068. border-radius: 8px;
  1069. }
  1070. .tribe-feed-full {
  1071. width: 100%;
  1072. background-color: #222;
  1073. padding: 16px;
  1074. border-radius: 8px;
  1075. box-sizing: border-box;
  1076. }
  1077. .feed-actions {
  1078. display: flex;
  1079. gap: 8px;
  1080. margin-bottom: 16px;
  1081. }
  1082. .vote-actions {
  1083. display: flex;
  1084. gap: 8px;
  1085. margin-bottom: 16px;
  1086. }
  1087. .feed-list {
  1088. display: flex;
  1089. flex-direction: column;
  1090. gap: 12px;
  1091. margin-bottom: 16px;
  1092. }
  1093. .feed-item {
  1094. background-color: #1c1c1c;
  1095. padding: 12px;
  1096. border-radius: 6px;
  1097. color: #f0f0f0;
  1098. }
  1099. .feed-item p {
  1100. margin: 4px 0;
  1101. }
  1102. .feed-item form {
  1103. margin-top: 8px;
  1104. }
  1105. .feed-item button {
  1106. background-color: orange;
  1107. color: black;
  1108. border: none;
  1109. padding: 6px 12px;
  1110. border-radius: 4px;
  1111. cursor: pointer;
  1112. }
  1113. .feed-item button:disabled {
  1114. background-color: #555;
  1115. cursor: not-allowed;
  1116. }
  1117. .tribe-feed .feed-row,
  1118. .tribe-feed-full .feed-row {
  1119. display: flex;
  1120. align-items: flex-start;
  1121. gap: 12px;
  1122. }
  1123. .tribe-feed .refeed-column,
  1124. .tribe-feed-full .refeed-column {
  1125. flex: 0 0 68px;
  1126. min-width: 68px;
  1127. max-width: 68px;
  1128. padding: 10px 8px;
  1129. }
  1130. .tribe-feed .refeed-column h1,
  1131. .tribe-feed-full .refeed-column h1 {
  1132. margin: 0 0 8px 0;
  1133. font-size: 24px;
  1134. }
  1135. .tribe-feed .refeed-btn,
  1136. .tribe-feed-full .refeed-btn {
  1137. padding: 6px 8px;
  1138. font-size: 12px;
  1139. width: 100%;
  1140. }
  1141. .tribe-feed .feed-main,
  1142. .tribe-feed-full .feed-main {
  1143. flex: 1 1 auto;
  1144. min-width: 0;
  1145. overflow-wrap: anywhere;
  1146. word-break: break-word;
  1147. }
  1148. @media (max-width: 720px) {
  1149. .tribe-feed .feed-row,
  1150. .tribe-feed-full .feed-row {
  1151. flex-direction: column;
  1152. }
  1153. .tribe-feed .refeed-column,
  1154. .tribe-feed-full .refeed-column {
  1155. width: 100%;
  1156. min-width: 0;
  1157. max-width: none;
  1158. align-items: flex-start;
  1159. }
  1160. }
  1161. .tribe-feed .feed-actions,
  1162. .tribe-feed-full .feed-actions {
  1163. display: flex;
  1164. gap: 8px;
  1165. flex-wrap: wrap;
  1166. margin-bottom: 8px;
  1167. }
  1168. .tribe-feed .feed-actions form,
  1169. .tribe-feed-full .feed-actions form,
  1170. .tribe-feed .refeed-column form,
  1171. .tribe-feed-full .refeed-column form {
  1172. margin: 0;
  1173. }
  1174. .tribe-feed-compose {
  1175. display: grid;
  1176. grid-template-columns: 1fr auto;
  1177. gap: 12px;
  1178. margin-top: 14px;
  1179. align-items: end;
  1180. }
  1181. .tribe-feed-compose textarea {
  1182. width: 100%;
  1183. min-width: 0;
  1184. padding: 12px;
  1185. border-radius: 10px;
  1186. border: 1px solid #444;
  1187. background: #222;
  1188. color: #eee;
  1189. resize: vertical;
  1190. min-height: 120px;
  1191. line-height: 1.45;
  1192. box-sizing: border-box;
  1193. }
  1194. .tribe-feed-compose .tribe-feed-send {
  1195. height: 40px;
  1196. padding: 0 14px;
  1197. border-radius: 10px;
  1198. white-space: nowrap;
  1199. }
  1200. @media (max-width: 720px) {
  1201. .tribe-feed-compose {
  1202. grid-template-columns: 1fr;
  1203. }
  1204. .tribe-feed-compose .tribe-feed-send {
  1205. width: 100%;
  1206. }
  1207. }
  1208. .tribes-container{
  1209. display:grid; grid-template-columns:repeat(auto-fill,minmax(400px,1fr)); gap:20px; margin-top:16px;
  1210. }
  1211. .tribe-card {
  1212. padding:16px; background:#2c2f33; border-radius:8px; border:1px solid #444;
  1213. }
  1214. .tribe-details {
  1215. display: flex;
  1216. background: #2c2f33;
  1217. border-radius: 12px;
  1218. padding: 24px;
  1219. grid-template-columns: 1fr 2fr;
  1220. gap: 24px;
  1221. }
  1222. .tribe-main {
  1223. flex-direction: column;
  1224. gap: 16px;
  1225. }
  1226. .tribe-side {
  1227. background: #2c2f33;
  1228. width: 60%;
  1229. flex-direction: column;
  1230. gap: 16px;
  1231. }
  1232. .filter-btn,.create-button,.edit-btn,.delete-btn,.join-btn,.leave-btn,.buy-btn
  1233. {
  1234. padding:8px 12px; border:none; border-radius:4px; cursor:pointer; background:#ff6600; color:#fff;
  1235. }
  1236. .filter-btn.active {
  1237. background:#ffa500;
  1238. }
  1239. .create-button {
  1240. background:#ffcc00; color:#000;
  1241. }
  1242. .gallery {
  1243. display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:10px; padding:10px;
  1244. }
  1245. .gallery-item img {
  1246. width:100%; max-height:200px; object-fit:cover; border-radius:6px; transition:transform .2s;
  1247. }
  1248. .gallery-item:hover img {
  1249. transform:scale(1.05);
  1250. }
  1251. .tribe-detail-image {
  1252. width:100%; max-width:200px; max-height:300px; object-fit:cover; margin:16px 0; border-radius:6px;
  1253. }
  1254. .activity-image-preview {
  1255. width: 400px;
  1256. height: 300px;
  1257. object-fit: contain;
  1258. border: 0px;
  1259. }
  1260. .media-preview {
  1261. max-width: 100%;
  1262. height: auto;
  1263. display: block;
  1264. }
  1265. .meme-checkbox {
  1266. width: 1%;
  1267. }
  1268. .image-detail {
  1269. width: 100%;
  1270. max-width: 400px;
  1271. max-height: 300px;
  1272. object-fit: cover;
  1273. border-radius: 6px;
  1274. margin-bottom: 8px;
  1275. }
  1276. .div-center.image-form .image-detail {
  1277. max-width: 200px;
  1278. max-height: 150px;
  1279. object-fit: contain;
  1280. }
  1281. .gallery {
  1282. display: grid;
  1283. grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  1284. gap: 10px;
  1285. padding: 10px;
  1286. }
  1287. .gallery-item img {
  1288. width: 100%;
  1289. max-height: 200px;
  1290. object-fit: cover;
  1291. border-radius: 6px;
  1292. transition: transform .2s;
  1293. }
  1294. .gallery-item:hover img {
  1295. transform: scale(1.05);
  1296. }
  1297. .lightbox {
  1298. display: none;
  1299. position: fixed;
  1300. top: 0; left: 0;
  1301. width: 100%; height: 100%;
  1302. background: rgba(0,0,0,0.85);
  1303. justify-content: center;
  1304. align-items: center;
  1305. z-index: 10000;
  1306. }
  1307. .lightbox:target {
  1308. display: flex;
  1309. }
  1310. .lightbox img {
  1311. max-width: 90%;
  1312. max-height: 90%;
  1313. object-fit: contain;
  1314. border-radius: 6px;
  1315. }
  1316. .lightbox-close {
  1317. position: absolute;
  1318. top: 15px;
  1319. right: 60px;
  1320. width: 42px;
  1321. height: 42px;
  1322. background: rgba(0, 0, 0, 0.6);
  1323. border-radius: 50%;
  1324. color: #fff;
  1325. font-size: 1.5em;
  1326. text-align: center;
  1327. line-height: 32px;
  1328. text-decoration: none;
  1329. }
  1330. /* Opinions */
  1331. .voting-buttons {
  1332. display: flex;
  1333. gap: 10px;
  1334. margin-top: 10px;
  1335. }
  1336. .opinion-card {
  1337. background-color: #1c1c1c;
  1338. border: 1px solid #333;
  1339. border-radius: 10px;
  1340. padding: 16px;
  1341. margin-bottom: 24px;
  1342. color: #FFA500;
  1343. }
  1344. .opinion-card h3 {
  1345. margin-bottom: 8px;
  1346. }
  1347. .opinion-card p {
  1348. margin: 4px 0;
  1349. color: #FFD700;
  1350. }
  1351. /* Events */
  1352. .event-tags {
  1353. margin-top: 12px;
  1354. }
  1355. .event-tags .tag {
  1356. display: inline-block;
  1357. background-color: #2a2a2a;
  1358. color: #FFA500;
  1359. padding: 4px 10px;
  1360. margin: 4px 4px 0 0;
  1361. border-radius: 6px;
  1362. font-size: 13px;
  1363. }
  1364. /* Tasks */
  1365. .task-id {
  1366. color: #FFA500;
  1367. font-weight: bold;
  1368. margin: 0;
  1369. }
  1370. /* Governance */
  1371. .vote-buttons-row {
  1372. display: flex;
  1373. gap: 10px;
  1374. flex-wrap: nowrap;
  1375. justify-content: start;
  1376. }
  1377. .conn-actions {
  1378. display: flex;
  1379. gap: 10px;
  1380. margin-top: 10px;
  1381. }
  1382. .inhabitant-action {
  1383. display: flex;
  1384. gap: 10px;
  1385. margin-top: 10px;
  1386. }
  1387. .transfer-actions {
  1388. display: flex;
  1389. gap: 10px;
  1390. margin-top: 10px;
  1391. }
  1392. .transfer-topbar-left {
  1393. display: flex;
  1394. gap: 8px;
  1395. flex-wrap: wrap;
  1396. align-items: center;
  1397. }
  1398. .transfer-chips {
  1399. display: flex;
  1400. gap: 8px;
  1401. flex-wrap: wrap;
  1402. align-items: center;
  1403. }
  1404. .transfer-voting-buttons {
  1405. display: flex;
  1406. gap: 8px;
  1407. flex-wrap: wrap;
  1408. }
  1409. .confirmations-block {
  1410. margin-top: 6px;
  1411. }
  1412. .confirmations-progress {
  1413. width: 260px;
  1414. max-width: 100%;
  1415. height: 8px;
  1416. border-radius: 999px;
  1417. overflow: hidden;
  1418. background: rgba(255, 255, 255, 0.12);
  1419. appearance: none;
  1420. }
  1421. .confirmations-progress::-webkit-progress-bar {
  1422. background: rgba(255, 255, 255, 0.12);
  1423. }
  1424. .confirmations-progress::-webkit-progress-value {
  1425. background: rgba(255, 255, 255, 0.65);
  1426. }
  1427. .confirmations-progress::-moz-progress-bar {
  1428. background: rgba(255, 255, 255, 0.65);
  1429. }
  1430. .transfer-range {
  1431. display: flex;
  1432. gap: 8px;
  1433. align-items: center;
  1434. }
  1435. .transfer-amount-input {
  1436. width: 120px;
  1437. }
  1438. .market-item-actions {
  1439. display: flex;
  1440. gap: 10px;
  1441. margin-top: 10px;
  1442. }
  1443. .job-actions {
  1444. display: flex;
  1445. gap: 10px;
  1446. margin-top: 10px;
  1447. }
  1448. .tribe-actions {
  1449. display: flex;
  1450. gap: 10px;
  1451. margin-top: 10px;
  1452. }
  1453. .audio-actions {
  1454. display: flex;
  1455. gap: 10px;
  1456. margin-top: 10px;
  1457. }
  1458. .video-actions {
  1459. display: flex;
  1460. gap: 10px;
  1461. margin-top: 10px;
  1462. }
  1463. .document-actions {
  1464. display: flex;
  1465. gap: 10px;
  1466. margin-top: 10px;
  1467. }
  1468. .event-actions {
  1469. display: flex;
  1470. gap: 10px;
  1471. margin-top: 10px;
  1472. }
  1473. .feed-actions {
  1474. display: flex;
  1475. gap: 10px;
  1476. margin-top: 10px;
  1477. }
  1478. .image-actions {
  1479. display: flex;
  1480. gap: 10px;
  1481. margin-top: 10px;
  1482. }
  1483. .task-actions {
  1484. display: flex;
  1485. gap: 10px;
  1486. align-items: center;
  1487. flex-wrap: wrap;
  1488. }
  1489. .task-actions > form {
  1490. margin: 0;
  1491. }
  1492. .task-actions .project-control-form,
  1493. .task-actions .project-control-form--status {
  1494. margin: 0;
  1495. padding: 0;
  1496. }
  1497. .task-actions .project-control-form--status {
  1498. display: flex;
  1499. align-items: center;
  1500. gap: 10px;
  1501. }
  1502. .task-actions .project-control-select,
  1503. .task-actions .project-control-btn {
  1504. margin: 0;
  1505. }
  1506. .task-actions button {
  1507. display: inline-flex;
  1508. align-items: center;
  1509. justify-content: center;
  1510. }
  1511. .report-actions{
  1512. display:flex;
  1513. align-items:center;
  1514. gap:10px;
  1515. flex-wrap:wrap;
  1516. }
  1517. .report-actions form{ margin:0; }
  1518. .report-actions button,
  1519. .report-actions select{
  1520. height:40px;
  1521. }
  1522. .cv-filter-form {
  1523. display: flex;
  1524. gap: 8px;
  1525. flex-wrap: wrap;
  1526. align-items: flex-end;
  1527. }
  1528. .cv-actions {
  1529. display: flex;
  1530. flex-direction: column;
  1531. gap: 8px;
  1532. margin-top: 12px;
  1533. }
  1534. .card-salary {
  1535. display: inline-block;
  1536. font-weight: 700;
  1537. font-size: 1.2em;
  1538. letter-spacing: 0.02em;
  1539. }
  1540. .mode-buttons {
  1541. display: flex;
  1542. gap: 10px;
  1543. margin-top: 10px;
  1544. }
  1545. /* Tags */
  1546. .tag-cloud-wrap {
  1547. display: flex;
  1548. flex-wrap: wrap;
  1549. justify-content: center;
  1550. align-items: center;
  1551. padding: 1em;
  1552. width: 97%;
  1553. height: auto;
  1554. background: #111;
  1555. border: 1px solid #333;
  1556. border-radius: 8px;
  1557. margin: 1em auto;
  1558. gap: 0.8em;
  1559. }
  1560. .tag-cloud-item {
  1561. display: inline-block;
  1562. font-weight: 600;
  1563. text-decoration: none;
  1564. white-space: nowrap;
  1565. transition: transform 0.2s ease, color 0.2s ease;
  1566. }
  1567. .tag-cloud-item:hover {
  1568. transform: scale(1.3);
  1569. color: #FFA500 !important;
  1570. z-index: 10;
  1571. }
  1572. /* Feed */
  1573. .feed-card {
  1574. border: 1px solid #444;
  1575. border-radius: 12px;
  1576. padding: 16px;
  1577. margin-bottom: 24px;
  1578. background-color: #1c1c1c;
  1579. }
  1580. .feed-row {
  1581. display: flex;
  1582. flex-direction: row;
  1583. align-items: flex-start;
  1584. gap: 20px;
  1585. }
  1586. .refeed-column {
  1587. text-align: center;
  1588. border-right: 1px solid #555;
  1589. padding-right: 12px;
  1590. }
  1591. .refeed-column h1 {
  1592. font-size: 28px;
  1593. margin: 0;
  1594. color: #FFA500;
  1595. }
  1596. .refeed-btn {
  1597. margin-top: 10px;
  1598. background-color: #FFA500;
  1599. border: none;
  1600. padding: 6px 12px;
  1601. border-radius: 6px;
  1602. font-weight: bold;
  1603. color: #000;
  1604. cursor: pointer;
  1605. transition: background-color 0.2s ease-in-out;
  1606. }
  1607. .refeed-btn:hover {
  1608. background-color: #cc8500;
  1609. }
  1610. .feed-main {
  1611. flex: 1;
  1612. }
  1613. .feed-text {
  1614. background-color: #2a2a2a;
  1615. padding: 10px;
  1616. border-radius: 6px;
  1617. color: #FFD700;
  1618. margin-bottom: 8px;
  1619. margin-right: 15px;
  1620. word-wrap: break-word;
  1621. }
  1622. .feed-main a {
  1623. text-decoration: underline;
  1624. }
  1625. .feed-main a:hover {
  1626. text-decoration: underline;
  1627. }
  1628. .votes-wrapper {
  1629. margin-top: 16px;
  1630. padding-top: 12px;
  1631. border-top: 1px solid #444;
  1632. }
  1633. .votes {
  1634. display: flex;
  1635. flex-wrap: wrap;
  1636. gap: 8px;
  1637. }
  1638. .vote-category {
  1639. background-color: #333;
  1640. color: #FFA500;
  1641. padding: 6px 10px;
  1642. border-radius: 6px;
  1643. font-size: 14px;
  1644. }
  1645. .voting-buttons {
  1646. display: flex;
  1647. flex-wrap: wrap;
  1648. gap: 10px;
  1649. margin-top: 12px;
  1650. }
  1651. .vote-btn {
  1652. background-color: #FFA500;
  1653. border: none;
  1654. color: #000;
  1655. padding: 6px 10px;
  1656. border-radius: 6px;
  1657. font-weight: bold;
  1658. cursor: pointer;
  1659. }
  1660. .vote-btn:hover {
  1661. background-color: #cc8500;
  1662. }
  1663. /* Pixelia Grid */
  1664. .pixelia-form-wrap {
  1665. display: flex;
  1666. justify-content: flex-start;
  1667. margin-bottom: 12px;
  1668. }
  1669. .pixel-color-000000 { background-color: #000000; }
  1670. .pixel-color-ffffff { background-color: #ffffff; }
  1671. .pixel-color-17f018 { background-color: #17f018; }
  1672. .pixel-color-ffbb00 { background-color: #ffbb00; }
  1673. .pixel-color-ff0000 { background-color: #ff0000; }
  1674. .pixel-color-0000ff { background-color: #0000ff; }
  1675. .pixel-color-ffff00 { background-color: #ffff00; }
  1676. .pixel-color-00ff00 { background-color: #00ff00; }
  1677. .pixel-color-00ffff { background-color: #00ffff; }
  1678. .pixel-color-ff00ff { background-color: #ff00ff; }
  1679. .pixel-color-a52a2a { background-color: #a52a2a; }
  1680. .pixel-color-800080 { background-color: #800080; }
  1681. .pixel-color-808000 { background-color: #808000; }
  1682. .pixel-color-00bfff { background-color: #00bfff; }
  1683. .pixel-color-d3d3d3 { background-color: #d3d3d3; }
  1684. .pixel-color-ff6347 { background-color: #ff6347; }
  1685. .pixel-empty { background-color: #1a1a1a; }
  1686. .pixel-cell {
  1687. width: 0.1px;
  1688. height: 0.1px;
  1689. }
  1690. /* Market */
  1691. .market-grid {
  1692. display: grid;
  1693. grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  1694. justify-content: center;
  1695. }
  1696. .market-card {
  1697. background-color: #2c2c2c;
  1698. border-radius: 16px;
  1699. box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  1700. transition: all 0.3s ease;
  1701. display: flex;
  1702. flex-direction: column;
  1703. justify-content: space-between;
  1704. text-align: center;
  1705. }
  1706. .market-comments {
  1707. background: #2f2f2f;
  1708. border-radius: 12px;
  1709. padding: 12px;
  1710. }
  1711. .market-comments .votations-comment-card {
  1712. background: #3a3a3a;
  1713. }
  1714. .countdown-strong {
  1715. font-weight: 700;
  1716. }
  1717. .market-card-image {
  1718. width: 100%;
  1719. max-height: 150px;
  1720. object-fit: contain;
  1721. border-radius: 8px;
  1722. margin-bottom: 15px;
  1723. }
  1724. .market-card-title {
  1725. font-size: 1.3em;
  1726. font-weight: bold;
  1727. color: #ffd600;
  1728. margin-bottom: 10px;
  1729. overflow: hidden;
  1730. white-space: nowrap;
  1731. text-overflow: ellipsis;
  1732. }
  1733. .market-card-description {
  1734. font-size: 0.9em;
  1735. color: #ccc;
  1736. margin-bottom: 10px;
  1737. overflow: hidden;
  1738. text-overflow: ellipsis;
  1739. white-space: nowrap;
  1740. }
  1741. .market-card-footer {
  1742. margin-top: auto;
  1743. display: flex;
  1744. flex-direction: column;
  1745. gap: 8px;
  1746. font-size: 1.1em;
  1747. color: #ffd600;
  1748. }
  1749. .market-card-footer .condition,
  1750. .market-card-footer .stock {
  1751. font-size: 1em;
  1752. color: #ff9900;
  1753. }
  1754. .market-card-footer .stock {
  1755. font-weight: bold;
  1756. color: #ff0000;
  1757. }
  1758. .market-card.price {
  1759. font-size: 1.3em;
  1760. font-weight: bold;
  1761. }
  1762. /*avatar relationships*/
  1763. .relationship-status {
  1764. display: flex;
  1765. flex-direction: row;
  1766. gap: 0.5rem;
  1767. justify-content: center;
  1768. margin: 0.8rem 0 0.5rem 0;
  1769. }
  1770. .status {
  1771. padding: 0.2rem 0.6rem;
  1772. border: 1px solid #555;
  1773. border-radius: 4px;
  1774. background-color: #2a2a2a;
  1775. font-size: 0.9rem;
  1776. color: #e0e0e0;
  1777. }
  1778. .status.mutual {
  1779. border-color: #557d3b;
  1780. color: #8bc34a;
  1781. }
  1782. .status.supporting {
  1783. border-color: #997f2e;
  1784. color: #f0c674;
  1785. }
  1786. .status.supported-by {
  1787. border-color: #3a6f9c;
  1788. color: #6ab0f3;
  1789. }
  1790. .status.blocked {
  1791. color: #ff5555;
  1792. border-color: #802020;
  1793. }
  1794. .status.blocked-by {
  1795. color: #ff8888;
  1796. border-color: #a04040;
  1797. }
  1798. .status.you {
  1799. padding: 0.2rem 0.6rem;
  1800. border: 1px solid #555;
  1801. border-radius: 4px;
  1802. background-color: #2a2a2a;
  1803. font-size: 0.9rem;
  1804. color: #FFDD44;
  1805. border-color: #FF6A00;
  1806. font-weight: bold;
  1807. }
  1808. /*forums*/
  1809. .forum-list {
  1810. display: flex;
  1811. flex-direction: column;
  1812. gap: 0.5em;
  1813. }
  1814. .forum-card {
  1815. display: flex;
  1816. flex-direction: row;
  1817. align-items: stretch;
  1818. border-bottom: 1px solid #262626;
  1819. padding: 12px 0 16px 0;
  1820. gap: 1.1em;
  1821. background: none;
  1822. }
  1823. .visit-forum-form {
  1824. display: flex;
  1825. justify-content: center;
  1826. margin-top: 10px;
  1827. }
  1828. .forum-score-col {
  1829. min-width: 78px;
  1830. display: flex;
  1831. align-items: center;
  1832. justify-content: center;
  1833. }
  1834. .forum-score-box {
  1835. background: #22201a;
  1836. border-radius: 12px;
  1837. box-shadow: 0 0 0.5em #111b;
  1838. display: flex;
  1839. flex-direction: column;
  1840. align-items: center;
  1841. justify-content: center;
  1842. min-width: 56px;
  1843. min-height: 134px;
  1844. padding: 8px 0;
  1845. }
  1846. .forum-score-form {
  1847. display: flex;
  1848. flex-direction: column;
  1849. align-items: center;
  1850. justify-content: center;
  1851. gap: 14px;
  1852. width: 100%;
  1853. }
  1854. .score-btn {
  1855. background: #282818;
  1856. color: #ffd740;
  1857. border: none;
  1858. width: 38px;
  1859. height: 38px;
  1860. font-size: 1.25em;
  1861. border-radius: 8px;
  1862. cursor: pointer;
  1863. transition: background 0.13s;
  1864. display: flex;
  1865. align-items: center;
  1866. justify-content: center;
  1867. line-height: 1;
  1868. }
  1869. .score-btn:hover {
  1870. background: #39391c;
  1871. }
  1872. .score-total {
  1873. font-size: 2em;
  1874. font-weight: bold;
  1875. color: #ffd740;
  1876. text-align: center;
  1877. margin: 0;
  1878. line-height: 1.1;
  1879. min-height: 38px;
  1880. display: flex;
  1881. align-items: center;
  1882. justify-content: center;
  1883. }
  1884. .forum-main-col {
  1885. flex: 1;
  1886. display: flex;
  1887. flex-direction: column;
  1888. gap: 0.22em;
  1889. }
  1890. .forum-header-row {
  1891. display: flex;
  1892. align-items: center;
  1893. gap: 0.7em;
  1894. margin-bottom: 2px;
  1895. }
  1896. .forum-category {
  1897. color: #ff7300;
  1898. background: #282818;
  1899. font-weight: bold;
  1900. font-size: 1em;
  1901. text-decoration: underline;
  1902. padding: 2px 7px;
  1903. border-radius: 5px;
  1904. margin-right: 0.4em;
  1905. }
  1906. .forum-title {
  1907. color: #ff7300;
  1908. font-size: 1.13em;
  1909. font-weight: bold;
  1910. text-decoration: underline;
  1911. transition: color 0.15s;
  1912. }
  1913. .forum-title:hover {
  1914. color: #ffd740;
  1915. }
  1916. .forum-body {
  1917. margin: 0.15em 0 0.2em 0;
  1918. font-size: 1em;
  1919. color: #ffd740;
  1920. }
  1921. .forum-meta {
  1922. font-size: 1em;
  1923. align-items: center;
  1924. color: #ffd740;
  1925. margin: 0.1em 0 0 0;
  1926. display: flex;
  1927. gap: 1.3em;
  1928. }
  1929. .forum-footer {
  1930. font-size: 0.97em;
  1931. margin-top: 6px;
  1932. display: flex;
  1933. gap: 0.5em;
  1934. align-items: center;
  1935. }
  1936. .date-link {
  1937. color: #ffd740;
  1938. font-family: monospace;
  1939. font-size: 1em;
  1940. }
  1941. .user-link {
  1942. color: #ffd740;
  1943. font-weight: bold;
  1944. text-decoration: underline dotted;
  1945. }
  1946. .mode-buttons-row {
  1947. display: flex;
  1948. flex-direction: row;
  1949. align-items: flex-start;
  1950. margin-bottom: 1.5em;
  1951. }
  1952. .mode-buttons-cols {
  1953. flex: 1;
  1954. display: flex;
  1955. flex-wrap: wrap;
  1956. gap: 0.6em;
  1957. }
  1958. .forum-comment {
  1959. display: flex;
  1960. flex-direction: column;
  1961. gap: 12px;
  1962. background: #282828;
  1963. padding: 12px;
  1964. margin-bottom: 8px;
  1965. border-radius: 8px;
  1966. transition: background 0.3s ease;
  1967. }
  1968. .comment-header {
  1969. display: flex;
  1970. align-items: center;
  1971. justify-content: space-between;
  1972. }
  1973. .comment-body-row {
  1974. display: flex;
  1975. flex-direction: row;
  1976. gap: 16px;
  1977. }
  1978. .comment-vote-col {
  1979. min-width: 78px;
  1980. display: flex;
  1981. align-items: flex-start;
  1982. justify-content: center;
  1983. }
  1984. .comment-text-col {
  1985. flex: 1;
  1986. display: flex;
  1987. flex-direction: column;
  1988. }
  1989. .comment-form {
  1990. display: flex;
  1991. flex-direction: column;
  1992. gap: 8px;
  1993. }
  1994. .comment-textarea {
  1995. resize: vertical;
  1996. width: 100%;
  1997. padding: 8px;
  1998. background: #1e1e1e;
  1999. color: #ffd740;
  2000. border: 1px solid #444;
  2001. border-radius: 6px;
  2002. font-size: 1em;
  2003. }
  2004. .comment-votes {
  2005. font-size: 0.9em;
  2006. color: #ffd740;
  2007. }
  2008. .comment-footer {
  2009. font-size: 0.85em;
  2010. display: flex;
  2011. justify-content: space-between;
  2012. color: #ffd740;
  2013. }
  2014. .date-link {
  2015. color: #ffd740;
  2016. font-size: 0.95em;
  2017. }
  2018. .user-link {
  2019. color: #ffd740;
  2020. font-weight: bold;
  2021. font-size: 1em;
  2022. }
  2023. .forum-send-btn {
  2024. background: #ff7300;
  2025. color: #fff;
  2026. border: none;
  2027. padding: 8px 16px;
  2028. font-size: 1em;
  2029. border-radius: 8px;
  2030. cursor: pointer;
  2031. transition: background 0.2s;
  2032. }
  2033. .forum-send-btn:hover {
  2034. background: #ffd740;
  2035. }
  2036. .forum-owner-actions {
  2037. margin-top: 8px;
  2038. text-align: left;
  2039. }
  2040. .comment-votes .votes-count {
  2041. margin-right: 12px;
  2042. }
  2043. .new-message-wrapper {
  2044. margin-top: 16px;
  2045. padding: 16px;
  2046. border-radius: 8px;
  2047. }
  2048. .highlighted-reply {
  2049. background-color: #ffe5b4 !important;
  2050. }
  2051. .forum-comment.highlighted-reply {
  2052. background-color: #ffa400 !important;
  2053. transition: background 0.3s ease;
  2054. }
  2055. .forum-comment.level-0 { margin-left: 0; }
  2056. .forum-comment.level-1 { margin-left: 20px; }
  2057. .forum-comment.level-2 { margin-left: 40px; }
  2058. .forum-comment.level-3 { margin-left: 60px; }
  2059. .forum-comment.level-4 { margin-left: 80px; }
  2060. /*blockexplorer*/
  2061. .blockchain-view {
  2062. font-family: 'Inter', 'Roboto', 'Segoe UI', Arial, sans-serif;
  2063. background-color: #191b20;
  2064. padding: 32px 16px;
  2065. border-radius: 16px;
  2066. box-shadow: 0 8px 36px rgba(0,0,0,0.16);
  2067. color: #e7e7e7;
  2068. max-width: 900px;
  2069. margin: 0 auto;
  2070. }
  2071. .blockexplorer-search{
  2072. margin:16px 0 20px;
  2073. }
  2074. .blockexplorer-search-form{
  2075. display:flex;
  2076. flex-direction:column;
  2077. gap:12px;
  2078. }
  2079. .blockexplorer-search-row{
  2080. display:flex;
  2081. flex-direction:column;
  2082. gap:10px;
  2083. }
  2084. .blockexplorer-search-pair{
  2085. display:flex;
  2086. flex-wrap:wrap;
  2087. gap:6px;
  2088. }
  2089. .blockexplorer-search-dates{
  2090. display:flex;
  2091. flex-wrap:wrap;
  2092. gap:12px;
  2093. }
  2094. .blockexplorer-search-input{
  2095. min-width:220px;
  2096. }
  2097. .blockexplorer-search-actions{
  2098. display:flex;
  2099. justify-content:flex-start;
  2100. }
  2101. .block {
  2102. background: #23242a;
  2103. border-radius: 16px;
  2104. box-shadow: 0 2px 12px rgba(32,35,42,0.11);
  2105. padding: 22px 24px;
  2106. margin-bottom: 26px;
  2107. transition: box-shadow 0.22s;
  2108. position: relative;
  2109. }
  2110. .block-buttons {
  2111. display: flex;
  2112. justify-content: right;
  2113. align-items: center;
  2114. gap: 12px;
  2115. }
  2116. .button-container {
  2117. display: flex;
  2118. gap: 12px;
  2119. justify-content: right;
  2120. align-items: center;
  2121. }
  2122. .block:hover {
  2123. box-shadow: 0 8px 32px rgba(35,40,50,0.18);
  2124. }
  2125. .block-row {
  2126. display: flex;
  2127. align-items: center;
  2128. gap: 6px;
  2129. }
  2130. .blockchain-card-label {
  2131. color: #ffa300;
  2132. font-weight: bold;
  2133. letter-spacing: 1.5px;
  2134. line-height: 1.2;
  2135. margin-bottom: 0;
  2136. }
  2137. .block-row--content {
  2138. margin: 10px 0 0 0;
  2139. }
  2140. .block-info-table td {
  2141. padding: 12px 15px;
  2142. font-size: 14px;
  2143. border: 1px solid #444;
  2144. }
  2145. .block-author {
  2146. font-weight: 600;
  2147. font-size: 14px;
  2148. color: #ffb36a;
  2149. background: rgba(255,179,106,0.08);
  2150. padding: 3px 10px;
  2151. border-radius: 8px;
  2152. text-decoration: none;
  2153. transition: color 0.12s;
  2154. }
  2155. .block-author:hover {
  2156. color: #ffe0ba;
  2157. }
  2158. .block-timestamp {
  2159. color: #f5c242;
  2160. font-size: 12px;
  2161. margin-right: 6px;
  2162. }
  2163. .block-content-preview,
  2164. .block-content {
  2165. background: #222326;
  2166. border-radius: 10px;
  2167. padding: 14px 18px;
  2168. font-size: 14px;
  2169. line-height: 1.7;
  2170. color: #f5c242;
  2171. font-family: 'JetBrains Mono', 'Courier New', monospace;
  2172. overflow-x: auto;
  2173. }
  2174. .block-content-preview pre {
  2175. margin: 0;
  2176. }
  2177. .block-info-table {
  2178. width: 100%;
  2179. border-collapse: collapse;
  2180. margin: 15px 0;
  2181. }
  2182. .block-info-table td {
  2183. padding: 10px;
  2184. border: 1px solid #444;
  2185. font-size: 14px;
  2186. }
  2187. .json-content {
  2188. white-space: pre-wrap;
  2189. word-break: break-word;
  2190. color: #f5c242;
  2191. }
  2192. .block-row--details {
  2193. margin-top: 14px;
  2194. position: relative;
  2195. }
  2196. .block-url {
  2197. color: #ffb36a;
  2198. font-size: 14px;
  2199. text-decoration: none;
  2200. font-weight: 500;
  2201. transition: color 0.13s, border-color 0.13s;
  2202. }
  2203. .block-row--details .block-url {
  2204. position: absolute;
  2205. top: 0;
  2206. right: 0;
  2207. background: #1f2023;
  2208. padding: 6px 12px;
  2209. border-radius: 8px;
  2210. font-size: 14px;
  2211. font-weight: 500;
  2212. border: none;
  2213. transition: background 0.12s, color 0.12s;
  2214. }
  2215. .block-row--details .block-url:hover {
  2216. background: #292b36;
  2217. color: #ffb36a;
  2218. }
  2219. .btn-singleview {
  2220. background: #1e1f23;
  2221. border: none;
  2222. border-radius: 50%;
  2223. padding: 7px 12px;
  2224. cursor: pointer;
  2225. font-size: 1.14em;
  2226. color: #c6c6c6;
  2227. box-shadow: none;
  2228. transition: background 0.14s, color 0.14s;
  2229. text-decoration: none;
  2230. display: flex;
  2231. align-items: center;
  2232. justify-content: center;
  2233. }
  2234. .btn-singleview:hover {
  2235. background: #2d2e34;
  2236. color: #f8b92c;
  2237. }
  2238. .block-row--back {
  2239. margin-top: 15px;
  2240. }
  2241. .block-content-label {
  2242. color: #f5c242;
  2243. font-size: 1.02em;
  2244. margin-bottom: 8px;
  2245. font-weight: 600;
  2246. }
  2247. .btn-back {
  2248. background: #21232b;
  2249. color: #d7d7d7;
  2250. padding: 7px 22px;
  2251. border-radius: 8px;
  2252. text-decoration: none;
  2253. border: none;
  2254. font-size: 1.01rem;
  2255. font-weight: 500;
  2256. margin-top: 12px;
  2257. transition: background 0.12s, color 0.13s;
  2258. display: inline-block;
  2259. }
  2260. .btn-back:hover {
  2261. background: #292b36;
  2262. color: #ffb36a;
  2263. }
  2264. @media (max-width: 700px) {
  2265. .blockchain-view {
  2266. padding: 9vw 2vw;
  2267. }
  2268. .block, .block-single, .block--single {
  2269. padding: 15px 5vw;
  2270. }
  2271. .mode-buttons-row {
  2272. flex-direction: column;
  2273. gap: 18px;
  2274. }
  2275. }
  2276. /*inbox/pm*/
  2277. .pm-card.normal-pm { padding: 10px 12px; border-radius: 8px; margin-bottom: 10px; border: 1px solid #ffa300; background: transparent }
  2278. .pm-headerline { display: flex; align-items: center; gap: 6px; font-size: 13px; margin-bottom: 4px }
  2279. .pm-date { font-size: 12px; opacity: .7 }
  2280. .pm-sep { opacity: .8 }
  2281. .pm-spacer { flex: 1 }
  2282. .pm-chars { font-size: 12px; opacity: .7 }
  2283. .pm-subject { margin: 0 0 6px 0; font-size: 14px; font-weight: 600; line-height: 1.2; white-space: pre-wrap }
  2284. .pm-bot { opacity: .85 }
  2285. .pm-body { margin-top: 6px }
  2286. .pm-action-form { display: inline-block; margin: 0 }
  2287. .pm-actions-block {
  2288. width: 100%;
  2289. max-width: 720px;
  2290. border: 0;
  2291. }
  2292. .pm-actions {
  2293. display: flex;
  2294. gap: 10px;
  2295. }
  2296. .thread-level-0 { margin-left: 0 }
  2297. .thread-level-1 { margin-left: 12px; border-left: 1px solid #e5e7eb; padding-left: 10px }
  2298. .thread-level-2 { margin-left: 24px; border-left: 1px solid #e5e7eb; padding-left: 10px }
  2299. .thread-level-3 { margin-left: 36px; border-left: 1px solid #e5e7eb; padding-left: 10px }
  2300. .thread-level-4 { margin-left: 48px; border-left: 1px solid #e5e7eb; padding-left: 10px }
  2301. .thread-level-5 { margin-left: 60px; border-left: 1px solid #e5e7eb; padding-left: 10px }
  2302. .thread-level-6 { margin-left: 72px; border-left: 1px solid #e5e7eb; padding-left: 10px }
  2303. .thread-level-7 { margin-left: 84px; border-left: 1px solid #e5e7eb; padding-left: 10px }
  2304. .thread-level-8 { margin-left: 96px; border-left: 1px solid #e5e7eb; padding-left: 10px }
  2305. /*projects*/
  2306. .project-actions {
  2307. display: flex;
  2308. justify-content: flex-start;
  2309. align-items: center;
  2310. gap: 10px;
  2311. }
  2312. .project-card.status-completed .badge{ background:rgba(59,130,246,.12); color:#93c5fd; border-color:rgba(59,130,246,.25); }
  2313. .bookmark-actions.project-actions {
  2314. display: flex;
  2315. flex-wrap: wrap;
  2316. align-items: center;
  2317. justify-content: flex-end;
  2318. gap: 14px;
  2319. }
  2320. .bookmark-actions.project-actions form {
  2321. margin: 0;
  2322. }
  2323. .project-control-form {
  2324. display: flex;
  2325. align-items: center;
  2326. gap: 10px;
  2327. flex-wrap: nowrap;
  2328. }
  2329. .project-control-select,
  2330. .project-control-input,
  2331. .project-control-btn {
  2332. height: 42px;
  2333. }
  2334. .project-control-select,
  2335. .project-control-input {
  2336. min-width: 220px;
  2337. }
  2338. .project-control-btn {
  2339. white-space: nowrap;
  2340. }
  2341. .project-progress-input {
  2342. max-width: 140px;
  2343. min-width: 120px;
  2344. }
  2345. @media (max-width: 820px) {
  2346. .project-control-select,
  2347. .project-control-input {
  2348. min-width: 180px;
  2349. }
  2350. .project-progress-input {
  2351. min-width: 110px;
  2352. }
  2353. }
  2354. .badge{
  2355. position:absolute;
  2356. top:14px; right:14px;
  2357. font-size:.75rem;
  2358. letter-spacing:.02em;
  2359. padding:6px 8px;
  2360. border-radius:8px;
  2361. border:1px solid var(--line);
  2362. color:var(--muted);
  2363. }
  2364. .milestones, .bounties{ display:flex; flex-direction:column; gap:8px; }
  2365. .milestone-item, .bounty-item{
  2366. padding:12px;
  2367. border:1px solid var(--line);
  2368. border-radius:12px;
  2369. background:#121620;
  2370. }
  2371. .milestone-row{
  2372. display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:space-between;
  2373. margin-bottom:6px;
  2374. }
  2375. .milestone-title{ font-weight:600; }
  2376. .milestone-percent{ padding:4px 8px; border-radius:8px; border:1px solid var(--line); font-size:.8rem; color:#b7c2d6; }
  2377. .milestone-due{ color:#c9a86a; font-size:.85rem; }
  2378. .bounty-main{
  2379. display:flex; align-items:center; justify-content:space-between; gap:8px; margin-bottom:6px;
  2380. }
  2381. .bounty-title{ font-weight:600; }
  2382. .bounty-amount{
  2383. font-variant-numeric: tabular-nums;
  2384. padding:4px 8px; border-radius:8px; background:#18202f; border:1px solid var(--line);
  2385. }
  2386. .pledge-box{
  2387. margin-top:6px;
  2388. padding:14px;
  2389. border:1px solid var(--line);
  2390. border-radius:12px;
  2391. background:#121620;
  2392. display:grid;
  2393. gap:10px;
  2394. }
  2395. .pledge-box form{ display:flex; gap:10px; flex-wrap:wrap; }
  2396. .pledge-box input[type="number"]{
  2397. background:#0f1420; border:1px solid #2b3240; color:var(--text);
  2398. padding:10px 12px; border-radius:10px; outline:none;
  2399. }
  2400. .pledge-box input[type="number"]:focus{ border-color:#3a475c; }
  2401. @media (max-width: 420px){
  2402. .card-field{ grid-template-columns: 1fr; }
  2403. .milestone-row{ flex-direction:column; align-items:flex-start; gap:6px; }
  2404. }
  2405. /*banking*/
  2406. .addr-form-card, .addr-list-card {
  2407. border: 1px solid rgba(255,255,255,0.1);
  2408. border-radius: 12px;
  2409. background: rgba(255,255,255,0.03);
  2410. padding: 20px;
  2411. }
  2412. .addr-form-card.wide {
  2413. padding: 22px;
  2414. }
  2415. .addr-form .form-row {
  2416. display: grid;
  2417. grid-template-columns: 140px 1fr;
  2418. gap: 10px;
  2419. align-items: center;
  2420. margin-bottom: 12px;
  2421. }
  2422. .addr-form .form-input {
  2423. padding: 0 14px;
  2424. }
  2425. .addr-form .form-input.xl {
  2426. height: 50px;
  2427. font-size: 16px;
  2428. }
  2429. .addr-form .form-actions {
  2430. display: flex;
  2431. margin-top: 8px;
  2432. }
  2433. .addr-list-card .form-row {
  2434. display: grid;
  2435. grid-template-columns: 150px 1fr;
  2436. gap: 10px;
  2437. align-items: center;
  2438. }
  2439. .addr-list-card .form-input {
  2440. padding: 0 14px;
  2441. }
  2442. .addr-search input[type="text"]:focus,
  2443. .addr-form .form-input:focus {
  2444. outline: none;
  2445. border-color: #ffa300;
  2446. }
  2447. .addr-form .form-actions .mini-btn {
  2448. background: #ffa300;
  2449. border: none;
  2450. color: #fff;
  2451. padding: 9px 14px;
  2452. border-radius: 8px;
  2453. cursor: pointer;
  2454. }
  2455. .addr-form .form-actions .mini-btn:hover {
  2456. background: #ff7f00;
  2457. }
  2458. .bank-summary .bank-info-table tbody tr .synced {
  2459. color: green;
  2460. font-weight: bold;
  2461. }
  2462. .bank-summary .bank-info-table tbody tr .outdated {
  2463. color: red;
  2464. font-weight: bold;
  2465. }
  2466. .pub-item{border:1;border-radius:10px;background:none}
  2467. .error-box{background:#222326;border:none;color:#f5c242;padding:12px;border-radius:8px;margin-top:8px}
  2468. .error-title{margin:0 0 6px 0;font-weight:600}
  2469. .error-pre{margin:0;white-space:pre-wrap;font-family:monospace}
  2470. /* parliament */
  2471. .cycle-info {
  2472. display: grid;
  2473. grid-template-columns: repeat(3, minmax(0, 1fr));
  2474. gap: .75rem;
  2475. margin-bottom: 1rem;
  2476. }
  2477. .kpi {
  2478. border: 1px solid rgba(0,0,0,.08);
  2479. border-radius: 8px;
  2480. padding: .75rem;
  2481. }
  2482. .kpi__label {
  2483. display: block;
  2484. letter-spacing: .06em;
  2485. text-transform: uppercase;
  2486. color: var(--parl-accent, #ff9f1a);
  2487. opacity: 1;
  2488. }
  2489. .kpi__value {
  2490. font-weight: 600;
  2491. }
  2492. .method-badge,
  2493. .method-hero {
  2494. display: inline-flex;
  2495. align-items: center;
  2496. gap: .5rem;
  2497. }
  2498. .method-cell {
  2499. text-align: center;
  2500. }
  2501. .leader-cell {
  2502. text-align: center;
  2503. }
  2504. .mt-2 { margin-top: .5rem; }
  2505. .parliament-actor-table {
  2506. table-layout: auto;
  2507. width: 100%;
  2508. }
  2509. .parliament-actor-table th,
  2510. .parliament-actor-table td {
  2511. vertical-align: top;
  2512. }
  2513. .parliament-actor-col {
  2514. white-space: nowrap;
  2515. width: 1%;
  2516. text-align: left;
  2517. }
  2518. .parliament-actor-col .user-link {
  2519. display: inline-block;
  2520. }
  2521. .parliament-description-col {
  2522. white-space: normal;
  2523. text-align: left;
  2524. }
  2525. .parliament-members-row td {
  2526. padding-top: .5rem;
  2527. }
  2528. .parliament-members-list {
  2529. margin: .25rem 0 0;
  2530. padding-left: 1.25rem;
  2531. }
  2532. .parliament-members-list li {
  2533. margin: .125rem 0;
  2534. }
  2535. .oasis-footer {
  2536. display: flex;
  2537. justify-content: center;
  2538. align-items: center;
  2539. padding: 2px 10px;
  2540. border-top: 1px solid rgba(255,255,255,0.08);
  2541. line-height: 1;
  2542. min-height: 0;
  2543. }
  2544. .oasis-footer-center {
  2545. display: flex;
  2546. align-items: center;
  2547. justify-content: center;
  2548. gap: 8px;
  2549. flex-wrap: nowrap;
  2550. white-space: nowrap;
  2551. line-height: 1;
  2552. border:0px;
  2553. }
  2554. .oasis-footer-logo-link {
  2555. display: inline-flex;
  2556. align-items: center;
  2557. line-height: 0;
  2558. }
  2559. .oasis-footer-logo {
  2560. width: 48px;
  2561. height: 48px;
  2562. border-radius: 10px;
  2563. object-fit: cover;
  2564. display: block;
  2565. }
  2566. .oasis-footer-package-link,
  2567. .oasis-footer-package-name,
  2568. .oasis-footer-version,
  2569. .oasis-footer-sep {
  2570. line-height: 1;
  2571. }
  2572. .oasis-footer-package-link {
  2573. text-decoration: none;
  2574. }
  2575. .oasis-footer-package-link,
  2576. .oasis-footer-center a,
  2577. .oasis-footer-center span,
  2578. .oasis-footer-center strong {
  2579. padding-top: 0;
  2580. padding-bottom: 0;
  2581. margin: 0;
  2582. }