style.css 19 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384
  1. :root{
  2. /* background */
  3. --1d2021: #1d2021;
  4. --282828: #282828;
  5. --3c3836: #3c3836;
  6. --504945: #504945;
  7. /* font */
  8. --928374: #928374;
  9. --a89984: #a89984;
  10. --bdae93: #bdae93;
  11. --8ec07c: #8ec07c;
  12. --ebdbb2: #ebdbb2;
  13. /* code highlighter */
  14. --comment: #9e8e73;
  15. --default: #d4be98;
  16. --keyword: #d8a657;
  17. --string: #7daea7;
  18. /* color codes for instance list */
  19. --green: #b8bb26;
  20. --yellow: #d8a657;
  21. --red: #fb4934;
  22. }
  23. audio{
  24. max-width:100%;
  25. display:block;
  26. }
  27. .left audio{
  28. margin-top:7px;
  29. }
  30. .right-wrapper audio{
  31. margin-bottom:17px;
  32. }
  33. body,html{
  34. padding:0;
  35. margin:0;
  36. }
  37. body{
  38. background:var(--1d2021);
  39. color:var(--a89984);
  40. font-size:16px;
  41. box-sizing:border-box;
  42. font-family:sans-serif;
  43. margin:15px 7% 45px;
  44. word-wrap:anywhere;
  45. line-height:22px;
  46. max-width:2000px;
  47. position:relative;
  48. }
  49. .navigation{
  50. position:absolute;
  51. top:0;
  52. right:0;
  53. font-size:14px;
  54. line-height:40px;
  55. }
  56. .navigation a{
  57. color:var(--bdae93);
  58. text-decoration:none;
  59. }
  60. .navigation a:hover{
  61. text-decoration:underline;
  62. }
  63. .navigation a:not(:last-child)::after{
  64. content:"|";
  65. padding:0 7px;
  66. display:inline-block;
  67. color:var(--504945);
  68. }
  69. h1,h2,h3,h4,h5,h6{
  70. padding:0;
  71. margin:0 0 7px 0;
  72. line-height:initial;
  73. color:var(--bdae93);
  74. }
  75. h3,h4,h5,h6{
  76. margin-bottom:14px;
  77. }
  78. /*
  79. Web styles
  80. */
  81. #overflow{
  82. overflow:hidden;
  83. }
  84. /* Searchbox */
  85. .searchbox{
  86. width:40%;
  87. height:36px;
  88. border:1px solid var(--504945);
  89. background:var(--282828);
  90. border-radius:2px;
  91. margin-bottom:10px;
  92. position:relative;
  93. }
  94. .searchbox .wrapper{
  95. overflow:hidden;
  96. }
  97. .searchbox input[type="text"]{
  98. width:100%;
  99. padding-left:10px;
  100. }
  101. .searchbox input[type="text"]::placeholder{
  102. color:var(--928374);
  103. }
  104. .searchbox input[type="submit"]{
  105. float:right;
  106. cursor:pointer;
  107. padding:0 10px;
  108. }
  109. .searchbox input[type="submit"]:hover{
  110. text-decoration:underline;
  111. }
  112. .searchbox input{
  113. all:unset;
  114. line-height:36px;
  115. box-sizing:border-box;
  116. height:36px;
  117. color:var(--bdae93);
  118. }
  119. .searchbox:focus-within{
  120. border:1px solid var(--928374);
  121. }
  122. .autocomplete{
  123. display:none;
  124. position:absolute;
  125. top:35px;
  126. left:-1px;
  127. right:-1px;
  128. background:var(--282828);
  129. border:1px solid var(--928374);
  130. border-top:none;
  131. border-radius:0 0 2px 2px;
  132. z-index:10;
  133. overflow:hidden;
  134. }
  135. .autocomplete .entry{
  136. overflow:hidden;
  137. padding:4px 10px;
  138. cursor:pointer;
  139. outline:none;
  140. user-select:none;
  141. }
  142. .autocomplete .entry:hover{
  143. background:var(--3c3836);
  144. }
  145. .autocomplete .entry:focus{
  146. background:var(--3c3836);
  147. }
  148. /* Tabs */
  149. .tabs, .filters{
  150. overflow:hidden;
  151. overflow-x:auto;
  152. white-space:nowrap;
  153. }
  154. .tabs{
  155. padding-bottom:10px;
  156. }
  157. .tabs .tab{
  158. text-decoration:none;
  159. color:var(--bdae93);
  160. padding:4px 10px;
  161. display:inline-block;
  162. }
  163. .tabs .tab:hover{
  164. text-decoration:underline;
  165. }
  166. .tabs .tab.selected{
  167. border-bottom:2px solid var(--bdae93);
  168. }
  169. /* Filters */
  170. .filters{
  171. margin-bottom:7px;
  172. }
  173. .filters .filter{
  174. display:inline-block;
  175. margin-right:7px;
  176. vertical-align:bottom;
  177. }
  178. .filters .filter .title{
  179. font-size:13px;
  180. margin:0 4px;
  181. }
  182. .filters .filter input,
  183. .filters .filter select{
  184. all:unset;
  185. user-select:none;
  186. display:block;
  187. border:1px solid var(--504945);
  188. border-radius:2px;
  189. font-size:14px;
  190. padding:0 4px;
  191. width:127px;
  192. height:24px;
  193. }
  194. .timetaken{
  195. font-size:14px;
  196. font-weight:bold;
  197. margin-bottom:10px;
  198. }
  199. /*
  200. HOME
  201. */
  202. .home{
  203. min-height:100vh;
  204. margin:0 auto;
  205. display:table;
  206. text-align:center;
  207. }
  208. .home .logo{
  209. max-width:400px;
  210. height:100px;
  211. margin:0 auto 17px auto;
  212. }
  213. .home img{
  214. line-height:100px;
  215. font-size:60px;
  216. text-align:center;
  217. font-family:Times;
  218. width:100%;
  219. height:100%;
  220. background:var(--282828);
  221. display:block;
  222. object-fit:contain;
  223. }
  224. .home #center{
  225. display:table-cell;
  226. vertical-align:middle;
  227. width:500px;
  228. }
  229. .home .searchbox{
  230. width:100%;
  231. text-align:left;
  232. margin-bottom:20px;
  233. }
  234. .home a{
  235. color:inherit;
  236. }
  237. .home .subtext{
  238. margin-top:17px;
  239. line-height:16px;
  240. font-size:12px;
  241. }
  242. /*
  243. WEB
  244. */
  245. /* Captcha */
  246. .captcha-wrapper{
  247. position:relative;
  248. max-width:400px;
  249. margin:17px auto 0;
  250. border:1px solid var(--928374);
  251. }
  252. .captcha{
  253. padding-bottom:100%;
  254. padding-top:6.2%;
  255. }
  256. .captcha-wrapper img{
  257. position:absolute;
  258. top:0;
  259. left:0;
  260. width:100%;
  261. height:100%;
  262. }
  263. .captcha-controls{
  264. position:absolute;
  265. top:0;
  266. left:0;
  267. bottom:0;
  268. right:0;
  269. top:6.3%;
  270. }
  271. .captcha-wrapper img{
  272. display:block;
  273. background:#282828;
  274. }
  275. .captcha-wrapper input{
  276. display:none;
  277. }
  278. .captcha-wrapper label{
  279. float:left;
  280. width:25%;
  281. height:25%;
  282. position:relative;
  283. cursor:pointer;
  284. }
  285. .captcha-wrapper label:hover{
  286. background:rgba(255,255,255,0.2);
  287. }
  288. .captcha-wrapper input:checked + label{
  289. background:rgba(0,0,0,0.5);
  290. }
  291. .captcha-wrapper input:checked + label:after{
  292. content:"";
  293. position:absolute;
  294. left:39%;
  295. top:29%;
  296. width:20%;
  297. height:30%;
  298. transform:rotate(45deg);
  299. border-right:7px solid var(--ebdbb2);
  300. border-bottom:7px solid var(--ebdbb2);
  301. box-sizing:border-box;
  302. }
  303. .captcha-submit{
  304. float:right;
  305. margin:12px 0 4px;
  306. }
  307. .web .left{
  308. width:40%;
  309. float:left;
  310. }
  311. /* infobox */
  312. .infobox{
  313. border:1px dashed var(--504945);
  314. padding:10px;
  315. margin-bottom:17px;
  316. overflow:hidden;
  317. }
  318. .infobox .code{
  319. white-space:initial;
  320. }
  321. .infobox ul{
  322. padding-left:27px;
  323. margin-bottom:0;
  324. }
  325. .infobox a{
  326. color:var(--bdae93);
  327. }
  328. .infobox a:hover{
  329. text-decoration:underline;
  330. }
  331. /* text-result */
  332. .web .text-result{
  333. margin-bottom:30px;
  334. }
  335. .web .description{
  336. white-space:pre-line;
  337. }
  338. .web .type{
  339. border:1px solid var(--928374);
  340. background:var(--282828);
  341. padding:0 4px;
  342. border-radius:2px;
  343. font-size:14px;
  344. line-height:16px;
  345. float:left;
  346. margin:2px 7px 0 0;
  347. }
  348. .web .url{
  349. position:relative;
  350. }
  351. .web .url .part{
  352. font-size:15px;
  353. text-decoration:none;
  354. color:var(--928374);
  355. }
  356. .web .separator::before{
  357. content:"/";
  358. padding:0 4px;
  359. color:var(--504945);
  360. font-size:12px;
  361. }
  362. .web .part:hover{
  363. text-decoration:underline;
  364. }
  365. .web .hover{
  366. display:block;
  367. text-decoration:none;
  368. color:var(--a89984);
  369. overflow:hidden;
  370. clear:left;
  371. padding-top:7px;
  372. }
  373. .web .text-result .title{
  374. font-size:18px;
  375. color:var(--bdae93);
  376. margin-bottom:7px;
  377. }
  378. .web .text-result a:visited .title{
  379. color:var(--928374) !important;
  380. }
  381. .theme-white .web .text-result a:visited .title{
  382. color:#7c6f64 !important;
  383. }
  384. .web .text-result .hover:hover .title{
  385. text-decoration:underline;
  386. }
  387. .web .text-result .author{
  388. font-style:italic;
  389. }
  390. .web .text-result .greentext{
  391. font-size:14px;
  392. color:var(--8ec07c);
  393. }
  394. .web .right-right .text-result:last-child,
  395. .web .right-left .text-result:last-child{
  396. margin-bottom:0;
  397. }
  398. /* favicon */
  399. .favicon{
  400. all:unset;
  401. float:left;
  402. cursor:pointer;
  403. }
  404. .favicon-dropdown{
  405. display:none;
  406. position:absolute;
  407. top:25px;
  408. background:var(--282828);
  409. border:1px solid var(--504945);
  410. border-radius:2px;
  411. z-index:3;
  412. word-wrap:normal;
  413. }
  414. .favicon-dropdown::before{
  415. content:"";
  416. position:absolute;
  417. top:-10px;
  418. left:2px;
  419. border:5px solid transparent;
  420. border-bottom:5px solid var(--504945);
  421. }
  422. .favicon-dropdown a{
  423. text-decoration:none;
  424. color:var(--bdae93);
  425. display:block;
  426. padding:2px 7px 2px 5px;
  427. font-size:13px;
  428. }
  429. .favicon-dropdown a:hover{
  430. text-decoration:underline;
  431. }
  432. .favicon-dropdown:hover,
  433. .favicon:focus + .favicon-dropdown,
  434. .favicon-dropdown:focus-within{
  435. display:block;
  436. }
  437. .web .favicon img,
  438. .favicon-dropdown img{
  439. margin:3px 7px 0 0;
  440. width:16px;
  441. height:16px;
  442. font-size:12px;
  443. line-height:16px;
  444. text-align:center;
  445. display:block;
  446. text-align:left;
  447. white-space:nowrap;
  448. }
  449. .favicon-dropdown img{
  450. float:left;
  451. margin:2px 7px 0 0;
  452. }
  453. /* thumbnails */
  454. .thumb-wrap{
  455. position:relative;
  456. float:right;
  457. width:160px;
  458. height:90px;
  459. background:var(--282828);
  460. border:1px solid var(--504945);
  461. margin-left:7px;
  462. }
  463. .duration{
  464. position:absolute;
  465. right:0;
  466. bottom:0;
  467. padding:1px 2px;
  468. line-height:14px;
  469. background:var(--3c3836);
  470. font-size:12px;
  471. border-left:1px solid var(--504945);
  472. border-top:1px solid var(--504945);
  473. font-family:monospace;
  474. }
  475. .web .text-result:hover .thumb-wrap .duration{
  476. display:none;
  477. }
  478. .thumb-wrap .thumb{
  479. display:block;
  480. object-fit:contain;
  481. width:100%;
  482. height:100%;
  483. }
  484. .thumb-wrap.portrait{
  485. width:50px;
  486. }
  487. .thumb-wrap.square{
  488. width:90px;
  489. }
  490. /* Next page */
  491. .nextpage{
  492. margin:0 0 30px;
  493. text-align:center;
  494. display:block;
  495. padding:10px;
  496. border:1px solid var(--504945);
  497. border-radius:2px;
  498. text-decoration:none;
  499. color:var(--bdae93);
  500. }
  501. .nextpage:hover{
  502. text-decoration:underline;
  503. }
  504. /* Right wrapper */
  505. .web .right-wrapper{
  506. width:60%;
  507. float:right;
  508. overflow:hidden;
  509. padding-left:15px;
  510. box-sizing:border-box;
  511. }
  512. .web .right-right,
  513. .web .right-left{
  514. float:right;
  515. width:50%;
  516. padding:0 15px;
  517. box-sizing:border-box;
  518. overflow:hidden;
  519. min-height:1px;
  520. }
  521. .web .right-right{
  522. padding-right:0;
  523. }
  524. /*
  525. Tables
  526. */
  527. table{
  528. width:100%;
  529. text-align:left;
  530. border-collapse:collapse;
  531. }
  532. table td{
  533. width:50%;
  534. padding:0;
  535. vertical-align:top;
  536. }
  537. table tr td:first-child{
  538. padding-right:7px;
  539. }
  540. table a{
  541. display:block;
  542. text-decoration:none;
  543. color:var(--a89984);
  544. padding:0 10px 0 0;
  545. }
  546. table tr a:last-child{
  547. padding-right:0;
  548. }
  549. /* Related */
  550. .related{
  551. margin-bottom:20px;
  552. }
  553. .related a{
  554. padding-bottom:10px;
  555. color:var(--bdae93);
  556. }
  557. .related a:hover{
  558. text-decoration:underline;
  559. }
  560. /*
  561. Answers
  562. */
  563. .web .answer{
  564. max-height:600px;
  565. overflow:hidden;
  566. padding-bottom:17px;
  567. position:relative;
  568. }
  569. .web .answer::after{
  570. content:"";
  571. position:absolute;
  572. bottom:0;
  573. width:100%;
  574. height:17px;
  575. background:linear-gradient(transparent, var(--1d2021));
  576. pointer-events:none;
  577. }
  578. .web .answer-title{
  579. text-decoration:none;
  580. color:var(--a89984);
  581. }
  582. .web .answer-title a:hover{
  583. text-decoration:underline;
  584. }
  585. .web .spoiler:checked + .answer{
  586. overflow:initial;
  587. max-height:initial;
  588. }
  589. .web .spoiler{
  590. display:none;
  591. }
  592. .web .spoiler-button{
  593. display:block;
  594. border:1px solid var(--504945);
  595. border-radius:2px;
  596. line-height:30px;
  597. padding:0 7px;
  598. text-align:center;
  599. cursor:pointer;
  600. }
  601. .web .answer-wrapper{
  602. margin-bottom:27px;
  603. }
  604. .web .spoiler-button:hover{
  605. text-decoration:underline;
  606. }
  607. .web .spoiler-button::before{
  608. content:"Show more";
  609. }
  610. .web .spoiler:checked + .answer + .spoiler-button::before{
  611. content:"Show less";
  612. }
  613. /* Tables on left handside */
  614. .web .info-table{
  615. margin:10px 0;
  616. font-size:15px;
  617. color:var(--928374);
  618. background:var(--282828);
  619. border:1px dashed var(--504945);
  620. }
  621. .web .info-table td{
  622. padding:4px 10px;
  623. }
  624. .web .info-table tr td:first-child{
  625. width:1%;
  626. white-space:nowrap;
  627. padding-right:17px;
  628. color:var(--a89984);
  629. }
  630. .web .info-table tr:nth-child(even){
  631. background:var(--1d2021);
  632. }
  633. .web .sublinks{
  634. padding:17px 10px 0;
  635. font-size:15px;
  636. color:var(--#928374);
  637. }
  638. .web .sublinks table td{
  639. padding-bottom:17px;
  640. }
  641. .web .sublinks table tr:last-child td:last-child{
  642. padding-bottom:0;
  643. }
  644. .web .sublinks a:hover .title{
  645. text-decoration:underline;
  646. }
  647. /* Wikipedia head */
  648. .web .wiki-head .photo{
  649. float:right;
  650. margin:0 1px 10px 10px;
  651. }
  652. .web .wiki-head .photo img{
  653. display:block;
  654. max-width:200px;
  655. max-height:200px;
  656. filter:drop-shadow(1px 0 0 var(--504945)) drop-shadow(-1px 0 0 var(--504945)) drop-shadow(0 -1px 0 var(--504945)) drop-shadow(0 1px 0 var(--504945));
  657. }
  658. .web .wiki-head .description{
  659. clear:left;
  660. padding-top:7px;
  661. overflow:hidden;
  662. }
  663. .web .wiki-head table, .about table{
  664. margin-top:17px;
  665. border:1px dashed var(--504945);
  666. background:var(--1d2021);
  667. }
  668. .web .wiki-head table td{
  669. white-space:pre-line;
  670. }
  671. .web .wiki-head td, .about table td{
  672. padding:4px 7px;
  673. vertical-align:middle;
  674. }
  675. .web .wiki-head tr td:first-child, .about table tr td:first-child{
  676. width:30%;
  677. min-width:150px;
  678. }
  679. .web .wiki-head tr:nth-child(odd), .about table tr:nth-child(odd){
  680. background:var(--282828);
  681. }
  682. .web .wiki-head .socials{
  683. overflow:hidden;
  684. margin-top:17px;
  685. }
  686. .web .wiki-head .socials a{
  687. width:74px;
  688. height:80px;
  689. padding-right:4px;
  690. float:left;
  691. color:var(--bdae93);
  692. text-decoration:none;
  693. display:table;
  694. }
  695. .web .wiki-head .socials a:hover .title{
  696. text-decoration:underline;
  697. }
  698. .web .wiki-head .socials .center{
  699. display:table-cell;
  700. vertical-align:middle;
  701. }
  702. .web .wiki-head .socials img{
  703. margin:0 auto;
  704. display:block;
  705. text-align:center;
  706. width:36px;
  707. height:36px;
  708. line-height:36px;
  709. }
  710. .web .wiki-head .socials .title{
  711. margin-top:7px;
  712. text-align:center;
  713. font-size:13px;
  714. line-height:13px;
  715. }
  716. .web .fullimg{
  717. display:block;
  718. max-width:100%;
  719. max-height:150px;
  720. margin:7px 0 17px;
  721. box-sizing:border-box;
  722. border:1px solid var(--504945);
  723. }
  724. /*
  725. Code tags
  726. */
  727. .code{
  728. white-space:pre;
  729. font-family:monospace;
  730. background:var(--3c3836);
  731. color:var(--bdae93);
  732. padding:7px;
  733. margin:4px 0 13px 0;
  734. overflow-x:auto;
  735. border-radius:2px;
  736. border:1px solid var(--504945);
  737. }
  738. .code-inline{
  739. display:inline;
  740. font-family:monospace;
  741. background:var(--282828);
  742. color:var(--bdae93);
  743. border:1px solid var(--928374);
  744. padding:0 4px;
  745. border-radius:2px;
  746. }
  747. /* Wiki-head titles and quotes */
  748. .web .wiki-head h2{
  749. font-size:20px;
  750. margin:20px 0 13px 0;
  751. }
  752. .web .wiki-head h2:first-child{
  753. margin-top:10px;
  754. }
  755. .web .wiki-head a{
  756. color:var(--bdae93);
  757. }
  758. .quote{
  759. font-style:italic;
  760. margin:10px 0 13px;
  761. padding-left:10px;
  762. border-left:1px solid #504945;
  763. }
  764. /*
  765. Web images
  766. */
  767. .web .images{
  768. overflow:hidden;
  769. margin:0 -5px;
  770. font-size:0;
  771. }
  772. .web .images .duration{
  773. display:none;
  774. border:1px solid var(--504945);
  775. right:5px;
  776. bottom:5px;
  777. }
  778. .web .images .image:hover .duration{
  779. display:block;
  780. }
  781. .web .images .image{
  782. width:90px;
  783. height:90px;
  784. padding:5px;
  785. position:relative;
  786. line-height:90px;
  787. display:inline-block;
  788. text-align:center;
  789. color:inherit;
  790. }
  791. .web .images .image img{
  792. max-width:100%;
  793. max-height:100%;
  794. vertical-align:middle;
  795. }
  796. /*
  797. Images tab
  798. */
  799. #images{
  800. overflow:hidden;
  801. margin-bottom:10px;
  802. }
  803. #images .infobox{
  804. width:40%;
  805. box-sizing:border-box;
  806. }
  807. #images .image-wrapper{
  808. line-height:15px;
  809. width:20%;
  810. float:left;
  811. }
  812. #images .image{
  813. margin:0 auto;
  814. width:250px;
  815. max-width:100%;
  816. padding:7px 7px 30px 7px;
  817. box-sizing:border-box;
  818. font-size:14px;
  819. }
  820. #images a{
  821. color:inherit;
  822. text-decoration:none;
  823. display:block;
  824. }
  825. #images a:hover .title{
  826. text-decoration:underline;
  827. }
  828. #images .thumb{
  829. display:block;
  830. height:180px;
  831. margin-bottom:10px;
  832. position:relative;
  833. }
  834. #images .duration{
  835. display:block;
  836. border:1px solid #504945;
  837. }
  838. #images .image:hover .duration{
  839. display:none;
  840. }
  841. #images img{
  842. width:100%;
  843. height:100%;
  844. object-fit:contain;
  845. }
  846. #images .image .title{
  847. white-space:nowrap;
  848. overflow:hidden;
  849. margin-bottom:7px;
  850. font-weight:bold;
  851. }
  852. #images .image .description{
  853. overflow:hidden;
  854. height:45px;
  855. }
  856. .nextpage.img{
  857. width:50%;
  858. margin:0 auto 50px;
  859. }
  860. #popup{
  861. display:none;
  862. position:fixed;
  863. top:0;
  864. left:0;
  865. cursor:grab;
  866. user-select:none;
  867. pointer-events:none;
  868. z-index:5;
  869. }
  870. #popup:active{
  871. cursor:grabbing;
  872. }
  873. #popup-image{
  874. border:1px solid var(--928374);
  875. display:block;
  876. margin:0 auto;
  877. pointer-events:all;
  878. width:100%;
  879. height:100%;
  880. object-fit:contain;
  881. background:var(--282828);
  882. }
  883. #popup-status{
  884. display:none;
  885. position:fixed;
  886. top:0;
  887. left:0;
  888. width:100%;
  889. height:35px;
  890. background:var(--1d2021);
  891. border-bottom:1px solid var(--928374);
  892. z-index:4;
  893. }
  894. #popup-bg{
  895. background:var(--1d2021);
  896. opacity:.5;
  897. position:fixed;
  898. top:0;
  899. left:0;
  900. width:100%;
  901. height:100%;
  902. display:none;
  903. z-index:3;
  904. }
  905. #popup-status select{
  906. display:block;
  907. width:250px;
  908. }
  909. #popup-num,
  910. #popup-title{
  911. display:table-cell;
  912. width:0;
  913. word-wrap:normal;
  914. padding:0 10px;
  915. line-height:35px;
  916. color:var(--ebdbb2);
  917. text-decoration:none;
  918. }
  919. #popup-title:hover{
  920. text-decoration:underline;
  921. }
  922. #popup-title{
  923. width:initial;
  924. overflow:hidden;
  925. height:35px;
  926. display:block;
  927. }
  928. #popup-num{
  929. font-weight:bold;
  930. }
  931. #popup-dropdown{
  932. display:table-cell;
  933. vertical-align:middle;
  934. width:0;
  935. }
  936. /*
  937. Settings page
  938. */
  939. .web .settings{
  940. margin-top:17px;
  941. border:1px dashed var(--504945);
  942. padding:7px 10px 0;
  943. }
  944. .web .setting{
  945. margin-bottom:17px;
  946. }
  947. .web .setting .title{
  948. font-size:14px;
  949. }
  950. .web .settings-submit{
  951. margin:17px 10px;
  952. }
  953. .web .settings-submit input{
  954. float:right;
  955. }
  956. .web .settings-submit a{
  957. margin-right:17px;
  958. color:var(--bdae93);
  959. }
  960. /*
  961. About page
  962. */
  963. .about a{
  964. color:var(--bdae93);
  965. }
  966. .about h1, .about h2{
  967. margin-top:17px;
  968. }
  969. .about table{
  970. margin-bottom:17px;
  971. }
  972. .about table a{
  973. display:inline;
  974. }
  975. /*
  976. Syntax highlight
  977. */
  978. .c-comment{
  979. color:var(--comment);
  980. }
  981. .c-default{
  982. color:var(--default);
  983. }
  984. .c-html{
  985. color:var(--html);
  986. }
  987. .c-keyword{
  988. color:var(--keyword);
  989. font-weight:bold;
  990. }
  991. .c-string{
  992. color:var(--string);
  993. }
  994. /*
  995. Instances page
  996. */
  997. .instances table{
  998. white-space:nowrap;
  999. margin-top:17px;
  1000. }
  1001. .instances a{
  1002. color:var(--bdae93);
  1003. }
  1004. .instances tbody tr:nth-child(even){
  1005. background:var(--282828);
  1006. }
  1007. .instances thead{
  1008. outline:1px solid var(--928374);
  1009. outline-offset:-1px;
  1010. background:var(--3c3836);
  1011. user-select:none;
  1012. z-index:2;
  1013. position:sticky;
  1014. top:0;
  1015. }
  1016. .instances th{
  1017. cursor:row-resize;
  1018. }
  1019. .instances th:hover{
  1020. background:var(--504945);
  1021. }
  1022. .instances tbody{
  1023. outline:1px solid var(--504945);
  1024. outline-offset:-1px;
  1025. position:relative;
  1026. top:-1px;
  1027. }
  1028. .instances tbody tr:hover{
  1029. background:var(--3c3836);
  1030. cursor:pointer;
  1031. }
  1032. .instances .arrow{
  1033. display:inline-block;
  1034. position:relative;
  1035. top:6px;
  1036. margin-right:7px;
  1037. width:0;
  1038. height:0;
  1039. border:6px solid transparent;
  1040. border-top:10px solid var(--bdae93);
  1041. }
  1042. .instances .arrow.up{
  1043. top:0;
  1044. border:6px solid transparent;
  1045. border-bottom:10px solid var(--bdae93);
  1046. }
  1047. .instances th, .instances td{
  1048. padding:4px 7px;
  1049. width:0;
  1050. }
  1051. .instances .extend{
  1052. width:unset;
  1053. overflow:hidden;
  1054. max-width:200px;
  1055. }
  1056. .instances .popup-wrapper{
  1057. display:none;
  1058. position:fixed;
  1059. left:50%;
  1060. top:50%;
  1061. transform:translate(-50%, -50%);
  1062. width:800px;
  1063. max-width:100%;
  1064. max-height:100%;
  1065. overflow-x:auto;
  1066. padding:17px;
  1067. box-sizing:border-box;
  1068. pointer-events:none;
  1069. z-index:3;
  1070. }
  1071. .instances .popup{
  1072. border:1px solid var(--928374);
  1073. background:var(--282828);
  1074. padding:7px 10px;
  1075. pointer-events:initial;
  1076. }
  1077. .instances ul{
  1078. padding-left:20px;
  1079. }
  1080. .instances .go-back{
  1081. margin-top:17px;
  1082. display:inline-block;
  1083. }
  1084. /*
  1085. Responsive image
  1086. */
  1087. @media only screen and (max-width: 1454px){ #images .image-wrapper{ width:25%; } }
  1088. @media only screen and (max-width: 1161px){ #images .image-wrapper{ width:33.3333%; } }
  1089. @media only screen and (max-width: 750px){ #images .image-wrapper{ width:50%; } }
  1090. @media only screen and (max-width: 450px){ #images .image-wrapper{ width:100%; } }
  1091. /*
  1092. Responsive design
  1093. */
  1094. @media only screen and (max-width: 1550px){
  1095. .web .right-right,
  1096. .web .right-left{
  1097. float:none;
  1098. width:initial;
  1099. padding:0 0 0 15px;
  1100. }
  1101. .web .left,
  1102. .searchbox,
  1103. #images .infobox{
  1104. width:60%;
  1105. }
  1106. .web .right-wrapper{
  1107. width:40%;
  1108. }
  1109. }
  1110. @media only screen and (max-width: 1000px){
  1111. form{
  1112. padding-top:27px;
  1113. }
  1114. .navigation{
  1115. left:0;
  1116. right:unset;
  1117. line-height:22px;
  1118. }
  1119. .nextpage.img{
  1120. width:initial;
  1121. }
  1122. .web .right-right,
  1123. .web .right-left{
  1124. border:none;
  1125. padding:0;
  1126. }
  1127. .web .right-wrapper{
  1128. float:none;
  1129. padding:0;
  1130. width:initial;
  1131. }
  1132. .web .left,
  1133. .searchbox{
  1134. width:100%;
  1135. }
  1136. body:not(.instances) table td{
  1137. display:block;
  1138. width:100%;
  1139. }
  1140. table a{
  1141. padding:0;
  1142. }
  1143. .web.has-answer .left::before{
  1144. display:block;
  1145. content:"Results";
  1146. font-size:24px;
  1147. font-weight:bold;
  1148. margin-bottom:17px;
  1149. color:var(--bdae93);
  1150. }
  1151. .web .answer{
  1152. max-height:200px;
  1153. }
  1154. .web .wiki-head tr td:first-child,
  1155. .web .info-table tr td:first-child{
  1156. text-decoration:underline;
  1157. }
  1158. #images .infobox{
  1159. width:100%;
  1160. }
  1161. }