less copy protection, more size visualization
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 

1079 рядки
18 KiB

  1. @import url('https://fonts.googleapis.com/css?family=Coda&display=swap');
  2. html {
  3. height: 100%;
  4. width: 100%;
  5. box-sizing: border-box;
  6. overflow-x: hidden;
  7. overflow-y: hidden;
  8. color: #eee;
  9. }
  10. body {
  11. position: relative;
  12. background: #333;
  13. display: flex;
  14. flex-direction: column;
  15. align-items: center;
  16. justify-content: flex-start;
  17. height: 100%;
  18. width: 100%;
  19. font-family: 'Coda', sans-serif;
  20. }
  21. .entity-box {
  22. position: absolute;
  23. --height: 100px;
  24. --brightness: 1;
  25. max-height: var(--height);
  26. height: var(--height);
  27. text-align: center;
  28. -webkit-user-drag: none;
  29. -khtml-user-drag: none;
  30. -moz-user-drag: none;
  31. -o-user-drag: none;
  32. pointer-events: none;
  33. transition: left 0.2s cubic-bezier(.1,.41,.18,.99), top 0.2s cubic-bezier(.1,.41,.18,.99), height 0.2s cubic-bezier(.1,.41,.18,.99), max-height 0.2s cubic-bezier(.1,.41,.18,.99);
  34. }
  35. .entity-image {
  36. display: block;
  37. height: 100%;
  38. pointer-events: auto;
  39. -webkit-user-drag: none;
  40. -khtml-user-drag: none;
  41. -moz-user-drag: none;
  42. -o-user-drag: none;
  43. --offset: -100%;
  44. transform: translate(-50%, var(--offset));
  45. filter: brightness(var(--brightness));
  46. }
  47. .entity-image.flipped {
  48. transform: translate(-50%, var(--offset)) scale(-1, 1);
  49. }
  50. .entity-name {
  51. display: none;
  52. position: absolute;
  53. top: calc(-100% + var(--extra) / 2);
  54. left: 0%;
  55. transform: translate(-50%, -36px);
  56. font-size: 24px;
  57. pointer-events: none;
  58. max-width: 250px;
  59. width: 250px;
  60. transition: all 0s;
  61. }
  62. body.toggle-entity-name .entity-name,
  63. .entity-box.selected .entity-name {
  64. display: inline;
  65. }
  66. .entity-box.selected > img {
  67. filter: brightness(var(--brightness)) drop-shadow(0px 0px 5px gold);
  68. }
  69. body.toggle-entity-glow .entity-box:not(.selected) > img{
  70. filter: brightness(var(--brightness)) drop-shadow(0px 0px 2px white);
  71. }
  72. #main-area {
  73. min-height: 0px;
  74. display: flex;
  75. flex: 1 1 90vh;
  76. width: 100%;
  77. flex-direction: row;
  78. }
  79. #options {
  80. position: relative;
  81. flex: 1 1 15vw;
  82. min-width: 100pt;
  83. display: flex;
  84. justify-content: start;
  85. flex-direction: column;
  86. background: #444;
  87. overflow-x: hidden;
  88. overflow-y: auto;
  89. height: 100%;
  90. scrollbar-color: #e1e1e1 #888;
  91. }
  92. #options.hidden {
  93. min-width: 0pt;
  94. flex: 0 1 0vw;
  95. }
  96. #options-attribution {
  97. display: none;
  98. }
  99. #options::-webkit-scrollbar {
  100. height: 2px;
  101. }
  102. #options::-webkit-scrollbar-button {
  103. width: 0px;
  104. height: 0px;
  105. }
  106. #options::-webkit-scrollbar-thumb {
  107. background: #e1e1e1;
  108. border: 0px none #ffffff;
  109. border-radius: 50px;
  110. }
  111. #options::-webkit-scrollbar-thumb:hover {
  112. background: #ffffff;
  113. }
  114. #options::-webkit-scrollbar-thumb:active {
  115. background: #000000;
  116. }
  117. #options::-webkit-scrollbar-track {
  118. background: #00000000;
  119. border: 0px none #ffffff;
  120. border-radius: 50px;
  121. }
  122. #options::-webkit-scrollbar-track:hover {
  123. background: #666666;
  124. }
  125. #options::-webkit-scrollbar-track:active {
  126. background: #333333;
  127. }
  128. #options::-webkit-scrollbar-corner {
  129. background: transparent;
  130. }
  131. .options-two-buttons {
  132. display: flex;
  133. justify-content: space-evenly;
  134. }
  135. .options-category {
  136. position: relative;
  137. }
  138. .options-row {
  139. position: relative;
  140. flex-direction: column;
  141. display: flex;
  142. text-align: center;
  143. align-items: center;
  144. margin-left: auto;
  145. margin-right: auto;
  146. margin-top: 8px;
  147. margin-bottom: 8px;
  148. max-width: 90%;
  149. }
  150. .options-row.full {
  151. min-width: 90%;
  152. }
  153. .options-block {
  154. display: flex;
  155. text-align: center;
  156. min-width: 90%;
  157. width: 90%;
  158. margin: auto;
  159. flex-direction: column;
  160. }
  161. .options-label {
  162. text-align: center;
  163. user-select: none;
  164. margin-top: 12px;
  165. margin-bottom: 4px;
  166. }
  167. .options-block.options-block-optional {
  168. display: none;
  169. }
  170. body.show-extra-options .options-block.options-block-optional {
  171. display: flex;
  172. }
  173. .options-header {
  174. text-align: center;
  175. font-size: 24pt;
  176. margin-top: 10px;
  177. margin-bottom: 10px;
  178. background: #333;
  179. user-select: none;
  180. }
  181. .options-banner-buttons {
  182. width: 100%;
  183. text-align: center;
  184. margin-top: 10px;
  185. }
  186. .options-banner-button {
  187. display: inline-block;
  188. text-align: center;
  189. font-size: 24pt;
  190. background: #262;
  191. text-decoration: none;
  192. user-select: none;
  193. border-radius: 6pt;
  194. margin: 10px;
  195. border-color: #666;
  196. border-width: 3pt;
  197. border-style: outset;
  198. width: 90%;
  199. }
  200. .options-banner-button:hover {
  201. background: #282;
  202. }
  203. .options-banner-button:active {
  204. background: #272;
  205. border-style: inset;
  206. }
  207. .options-selector {
  208. font-size: 150%;
  209. width: 100%;
  210. }
  211. .button-img {
  212. height: 24pt;
  213. }
  214. #entities {
  215. position: absolute;
  216. user-select: none;
  217. width: 100%;
  218. height: 100%;
  219. }
  220. #world {
  221. position: relative;
  222. flex: 1 1 85vw;
  223. height: 100%;
  224. overflow: hidden;
  225. }
  226. #menubar {
  227. display: flex;
  228. flex: 1 0 5vh;
  229. flex-direction: row;
  230. justify-content: space-evenly;
  231. align-items: center;
  232. flex-wrap: wrap;
  233. min-width: 100vw;
  234. background: #222;
  235. }
  236. #menubar.hover-delete {
  237. background: #922;
  238. }
  239. .menubar-group {
  240. display: flex;
  241. flex-direction: row;
  242. }
  243. .popout-group {
  244. margin: 20px;
  245. display: flex;
  246. flex-direction: column;
  247. }
  248. .menu-item {
  249. font-size: 24px;
  250. color: #ccc;
  251. margin: 20px;
  252. }
  253. select.menu-item {
  254. color: #000;
  255. }
  256. #display {
  257. display: block;
  258. width: 100%;
  259. height: 100%;
  260. background: #333;
  261. }
  262. #options .options-label,
  263. #options .options-banner {
  264. flex: 0 1;
  265. font-size: 150%;
  266. }
  267. #options .options-label {
  268. width: 100%;
  269. }
  270. #options .options-banner {
  271. width: calc(100% - 20px);
  272. }
  273. .options-row .options-field-numeric {
  274. flex: 1 1 100%;
  275. max-width: 90%;
  276. font-size: 150%;
  277. }
  278. .options-row .options-field-text {
  279. flex: 1 0 90%;
  280. max-width: 90%;
  281. font-size: 150%;
  282. }
  283. .options-row .options-field-unit {
  284. flex: 1 1 10%;
  285. max-width: 90%;
  286. font-size: 150%;
  287. }
  288. .options-row .options-field-picker {
  289. flex: 1;
  290. width: 100%;
  291. min-width: 90%;
  292. max-width: 90%;
  293. font-size: 150%;
  294. overflow: hidden;
  295. white-space: pre-wrap;
  296. word-break: normal;
  297. text-overflow: ellipsis;
  298. }
  299. .options-row .symbol-button {
  300. width: 75px;
  301. font-size: 70px;
  302. }
  303. .options-row .options-button {
  304. flex: 1;
  305. width: 100%;
  306. font-size: 150%;
  307. }
  308. .options-block .options-button {
  309. flex: 1;
  310. width: 100%;
  311. font-size: 150%;
  312. }
  313. .options-row label {
  314. flex: 1;
  315. width: 100%;
  316. font-size: 150%;
  317. }
  318. body #test-canvas {
  319. position: fixed;
  320. top: 500vh;
  321. }
  322. .switch {
  323. height: 24pt;
  324. }
  325. .switch input {
  326. transform: scale(2);
  327. }
  328. .top-name {
  329. display: none;
  330. text-align: center;
  331. position: fixed;
  332. max-width: 150px;
  333. height: 50px;
  334. transform: translate(-50%, 20pt);
  335. z-index: 1001;
  336. }
  337. body.toggle-top-name .top-name.top-name-needed {
  338. display: block;
  339. }
  340. .top-name::after {
  341. display: block;
  342. background-image: url("./media/ui/arrow.svg");
  343. width: 70px;
  344. height: 70px;
  345. background-size: 70px 70px;
  346. background-repeat: no-repeat;
  347. content: "";
  348. transform: translate(0, -120%);
  349. }
  350. .bottom-name {
  351. display: none;
  352. text-align: center;
  353. position: fixed;
  354. width: 150px;
  355. height: 50px;
  356. z-index: 10001;
  357. transform: translate(-50%, 0pt);
  358. }
  359. body.toggle-bottom-name .bottom-name {
  360. display: inline;
  361. }
  362. #menubar select {
  363. font-size: 16pt;
  364. max-width: 200pt;
  365. min-width: 120pt;
  366. height: 40pt;
  367. max-height: 180pt;
  368. overflow: hidden;
  369. white-space: pre-wrap;
  370. word-break: normal;
  371. text-overflow: ellipsis;
  372. }
  373. #menubar button {
  374. position: relative;
  375. font-size: 32pt;
  376. height: 40pt;
  377. z-index: 1;
  378. }
  379. #open-help {
  380. padding-top: 1pt;
  381. }
  382. #open-help.highlighted::after {
  383. position: absolute;
  384. top: 0;
  385. left: 0;
  386. content: " ";
  387. display: block;
  388. height: 100%;
  389. width: 100%;
  390. background: inherit;
  391. filter: drop-shadow(0px 0px 10px white) drop-shadow(0px 0px 10px white);
  392. z-index: -1;
  393. animation: pulsing 5s linear 0s infinite;
  394. }
  395. @keyframes pulsing {
  396. 0% {
  397. opacity: 100%;
  398. }
  399. 50% {
  400. opacity: 25%;
  401. }
  402. 100% {
  403. opacity: 100%;
  404. }
  405. }
  406. a {
  407. color: #999;
  408. }
  409. #options-attribution-authors {
  410. text-align: center;
  411. }
  412. #options-attribution-owners {
  413. text-align: center;
  414. }
  415. #options-attribution-source {
  416. text-align: center;
  417. }
  418. .no-transition {
  419. transition: 0s !important;
  420. }
  421. .corner-ribbon {
  422. width: 200px;
  423. background: #e43;
  424. position: fixed;
  425. top: 25px;
  426. left: -50px;
  427. text-align: center;
  428. padding: 10px;
  429. letter-spacing: 1px;
  430. color: #f0f0f0;
  431. transform: rotate(-45deg);
  432. -webkit-transform: rotate(-45deg);
  433. }
  434. .corner-ribbon.bottom-right{
  435. top: auto;
  436. right: -50px;
  437. bottom: 25px;
  438. left: auto;
  439. transform: rotate(-45deg);
  440. -webkit-transform: rotate(-45deg);
  441. }
  442. a.corner-ribbon {
  443. text-decoration: none;
  444. }
  445. input[type=checkbox] {
  446. transform: scale(2);
  447. margin-left: 10px;
  448. margin-right: 10px;
  449. }
  450. input ~ label {
  451. user-select: none;
  452. }
  453. body.toggle-height-bars .height-bar,
  454. .entity-box.selected .height-bar {
  455. display: block;
  456. }
  457. .height-bar {
  458. display: none;
  459. min-width: calc(var(--xpos));
  460. min-height: 3px;
  461. height: 3px;
  462. position: absolute;
  463. opacity: 50%;
  464. background: repeating-linear-gradient(90deg, #ffffff, #ffffff 20px, #ffffff00 20px, #ffffff00 40px);
  465. top: calc(-100% + var(--extra));
  466. left: calc(-1 * var(--xpos));
  467. transition: 0s all;
  468. z-index: -1;
  469. }
  470. .height-bar::before {
  471. display: block;
  472. background: gray;
  473. position: absolute;
  474. content: var(--entity-height);
  475. transition: 0s all;
  476. }
  477. .height-bar::after {
  478. display: block;
  479. min-width: 24px;
  480. min-height: 3px;
  481. background: #ffffff;
  482. position: absolute;
  483. left: calc(var(--xpos) - 24px);
  484. transition: 0s all;
  485. content: "";
  486. }
  487. .sr-only {
  488. position: absolute;
  489. width: 1px;
  490. height: 1px;
  491. padding: 0;
  492. margin: -1px;
  493. overflow: hidden;
  494. clip: rect(0,0,0,0);
  495. border: 0;
  496. }
  497. .bottom-cover {
  498. display: none;
  499. position: absolute;
  500. width: 100%;
  501. height: 100vh;
  502. left: 0%;
  503. top: calc(100% - 51px);
  504. background: black;
  505. }
  506. body.toggle-bottom-cover .bottom-cover {
  507. display: inline-block;
  508. }
  509. .transitions {
  510. transition: 0.2s all;
  511. }
  512. .rotate-forward {
  513. transform: rotate(-90deg);
  514. }
  515. .rotate-backward {
  516. transform: rotate(90deg);
  517. }
  518. .flipped {
  519. transform: rotate(180deg);
  520. }
  521. i.fas
  522. i.far {
  523. pointer-events: none;
  524. }
  525. #help-icons {
  526. display: flex;
  527. flex-direction: column;
  528. flex-wrap: wrap;
  529. width: 50vw;
  530. }
  531. #help-icons > div {
  532. flex-basis: 25%;
  533. font-size: 150%;
  534. }
  535. #entity-view {
  536. text-align: center;
  537. font-weight: bold;
  538. font-size: 200%;
  539. }
  540. #spawners > select,
  541. #spawners > button,
  542. #filters > select,
  543. #filters > button {
  544. display: none;
  545. }
  546. #spawners > select#category-picker,
  547. #filters > select#filter-picker {
  548. display: block;
  549. }
  550. #spawners > select.category-visible,
  551. #spawners > select.category-visible + button,
  552. #filters > select.category-visible,
  553. #filters > select.category-visible + button {
  554. display: block;
  555. }
  556. option.filtered {
  557. display: none;
  558. }
  559. #spawners > select,
  560. #filters > select {
  561. font-size: 24pt;
  562. }
  563. #spawners > button {
  564. font-size: 30pt;
  565. }
  566. #spawners-categories {
  567. font-size: 24pt;
  568. }
  569. .scroll-button {
  570. position: absolute;
  571. height: 20%;
  572. width: 50px;
  573. font-size: 40px;
  574. background: #ffffff33;
  575. border: 0px;
  576. z-index: 1002;
  577. }
  578. .scroll-button:active {
  579. background: #ffffff66;
  580. }
  581. .scroll-button:hover {
  582. background: #ffffff44;
  583. }
  584. .scroll-button:disabled {
  585. background: #ffffff11;
  586. }
  587. #zoom-out {
  588. left: 0%;
  589. top: 0%;
  590. }
  591. #zoom-in {
  592. right: 0%;
  593. top: 0%;
  594. }
  595. #scroll-left {
  596. left: 0%;
  597. top: 20%;
  598. }
  599. #scroll-right {
  600. right: 0%;
  601. top: 20%;
  602. }
  603. #scroll-up {
  604. left: 0%;
  605. top: 40%;
  606. }
  607. #scroll-down {
  608. right: 0%;
  609. top: 40%;
  610. }
  611. #shrink {
  612. left: 0%;
  613. top: 60%;
  614. }
  615. #grow {
  616. right: 0%;
  617. top: 60%;
  618. }
  619. #fit {
  620. right: 0%;
  621. top: 80%;
  622. }
  623. #toggle-menu {
  624. padding-top: 2pt;
  625. position: relative;
  626. }
  627. .popout-menu {
  628. display: none;
  629. flex-direction: column;
  630. flex-wrap: nowrap;
  631. overflow-y: scroll;
  632. max-height: 80vh;
  633. justify-content: start;
  634. position: fixed;
  635. top: 10%;
  636. left: 10%;
  637. z-index: 10000;
  638. background: #222;
  639. border-color: #333;
  640. border-width: 5px;
  641. border-style: solid;
  642. }
  643. .popout-menu::-webkit-scrollbar {
  644. height: 2px;
  645. }
  646. .popout-menu::-webkit-scrollbar-button {
  647. width: 0px;
  648. height: 0px;
  649. }
  650. .popout-menu::-webkit-scrollbar-thumb {
  651. background: #e1e1e1;
  652. border: 0px none #ffffff;
  653. border-radius: 50px;
  654. }
  655. .popout-menu::-webkit-scrollbar-thumb:hover {
  656. background: #ffffff;
  657. }
  658. .popout-menu::-webkit-scrollbar-thumb:active {
  659. background: #000000;
  660. }
  661. .popout-menu::-webkit-scrollbar-track {
  662. background: #00000000;
  663. border: 0px none #ffffff;
  664. border-radius: 50px;
  665. }
  666. .popout-menu::-webkit-scrollbar-track:hover {
  667. background: #666666;
  668. }
  669. .popout-menu::-webkit-scrollbar-track:active {
  670. background: #333333;
  671. }
  672. .popout-menu::-webkit-scrollbar-corner {
  673. background: transparent;
  674. }
  675. .popout-menu.visible {
  676. display: flex;
  677. }
  678. .menu-button {
  679. height: 48pt;
  680. width: 56pt;
  681. font-size: 40pt;
  682. }
  683. .menu-button-holder {
  684. display: flex;
  685. align-items: center;
  686. margin: 5px 0px 5px;
  687. }
  688. .menu-text {
  689. font-size: 24pt;
  690. margin-left: 6pt;
  691. }
  692. #options-entity-defaults > button {
  693. word-break: break-word;
  694. }
  695. button {
  696. border: 3px;
  697. border-style: outset;
  698. }
  699. button:hover {
  700. background: #555;
  701. }
  702. button:enabled:active {
  703. border-style: inset;
  704. background: #aaa;
  705. }
  706. .toast {
  707. position: absolute;
  708. bottom: 10%;
  709. left: 50%;
  710. animation-name: toast-animation;
  711. animation-duration: 5s;
  712. animation-timing-function: linear;
  713. z-index: 99999;
  714. }
  715. @keyframes toast-animation {
  716. 0% {
  717. transform: translate(-50%, 0);
  718. opacity: 1;
  719. }
  720. 50% {
  721. transform: translate(-50%, -10vh);
  722. opacity: 1;
  723. }
  724. 100% {
  725. transform: translate(-50%, -20vh);
  726. opacity: 0;
  727. }
  728. }
  729. #help-menu *::-webkit-scrollbar {
  730. height: 2px;
  731. }
  732. #help-menu *::-webkit-scrollbar-button {
  733. width: 0px;
  734. height: 0px;
  735. }
  736. #help-menu *::-webkit-scrollbar-thumb {
  737. background: #e1e1e1;
  738. border: 0px none #ffffff;
  739. border-radius: 50px;
  740. }
  741. #help-menu *::-webkit-scrollbar-thumb:hover {
  742. background: #ffffff;
  743. }
  744. #help-menu *::-webkit-scrollbar-thumb:active {
  745. background: #000000;
  746. }
  747. #help-menu *::-webkit-scrollbar-track {
  748. background: #00000000;
  749. border: 0px none #ffffff;
  750. border-radius: 50px;
  751. }
  752. #help-menu *::-webkit-scrollbar-track:hover {
  753. background: #666666;
  754. }
  755. #help-menu *::-webkit-scrollbar-track:active {
  756. background: #333333;
  757. }
  758. #help-menu *::-webkit-scrollbar-corner {
  759. background: transparent;
  760. }
  761. #help-menu {
  762. display: none;
  763. position: absolute;
  764. width: 100vw;
  765. height: 100vh;
  766. z-index: 100001;
  767. overflow-x: hidden;
  768. }
  769. #help-menu.visible {
  770. display: flex;
  771. }
  772. #table-of-contents-holder {
  773. flex: 1 1 30%;
  774. padding: 15px;
  775. background: #111;
  776. overflow-y: auto;
  777. }
  778. #table-of-contents {
  779. line-height: 2;
  780. }
  781. #table-of-contents li {
  782. font-size: 150%;
  783. user-select: none;
  784. }
  785. #table-of-contents li:hover {
  786. color: #ccc;
  787. }
  788. #table-of-contents button {
  789. position: relative;
  790. width: 50pt;
  791. height: 50pt;
  792. font-size: 40pt;
  793. }
  794. #table-of-contents button i {
  795. position: absolute;
  796. top: 50%;
  797. left: 50%;
  798. transform: translate(-50%, -50%);
  799. }
  800. #help-contents-holder {
  801. flex: 1 1 70%;
  802. background: #333;
  803. padding: 25px;
  804. overflow-y: auto;
  805. }
  806. #help-contents > h2 {
  807. font-size: 250%;
  808. }
  809. #help-contents > h2 {
  810. margin-bottom: 16pt;
  811. }
  812. #help-contents > h2:nth-child(1n+2) {
  813. margin-top: 32pt;
  814. }
  815. #help-contents p {
  816. text-indent: 20pt;
  817. max-width: 60em;
  818. line-height: 1.4em;
  819. width: 80%;
  820. margin-bottom: 8pt;
  821. margin-top: 8pt;
  822. }
  823. #help-contents i.fas {
  824. text-indent: 0pt;
  825. margin-left: 2pt;
  826. margin-right: 2pt;
  827. }
  828. #help-contents ul {
  829. list-style: circle;
  830. line-height: 1.4;
  831. }
  832. #help-contents b {
  833. font-weight: bolder;
  834. }
  835. #help-contents li {
  836. margin-left: 2em;
  837. }
  838. #help-contents img {
  839. display: block;
  840. width: 80%;
  841. max-width: 60em;
  842. height: 60pt;
  843. }
  844. .nsfw {
  845. color: red;
  846. font-style: bold;
  847. }
  848. select {
  849. background: #111;
  850. color: #eee;
  851. border-color: #444;
  852. }
  853. select > option {
  854. color: #eee;
  855. }
  856. button:focus,
  857. select:focus,
  858. input:focus {
  859. outline-color: #eee;
  860. }
  861. input {
  862. background: #111;
  863. color: #eee;
  864. border-color: #444;
  865. }
  866. button {
  867. background: #111;
  868. color: #ddd;
  869. border-color: #666;
  870. }
  871. .settings-holder {
  872. display: flex;
  873. align-items: center;
  874. padding: 10px 0px 10px;
  875. border-color: #222;
  876. border-width: 5px;
  877. border-style: solid;
  878. max-width: 360pt;
  879. height: 60pt;
  880. }
  881. .settings-holder.enabled {
  882. background: green;
  883. border-color: darkgreen;
  884. }
  885. .settings-desc {
  886. text-align: right;
  887. margin-right: 8pt;
  888. user-select: none;
  889. flex: 1;
  890. }
  891. .settings-holder.disabled {
  892. background: gray;
  893. border-color: darkslategray;
  894. }
  895. .settings-name {
  896. font-size: 200%;
  897. margin-left: 8pt;
  898. user-select: none;
  899. max-width: 120pt;
  900. width: 120pt;
  901. }
  902. .settings-holder > select {
  903. height: 100%;
  904. background: darkgreen;
  905. font-size: 16pt;
  906. }
  907. .filter-button > i {
  908. color: gray;
  909. }
  910. .button-counter {
  911. position: absolute;
  912. color: white;
  913. opacity: 0.75;
  914. width: 25%;
  915. height: 25%;
  916. font-size: 16pt;
  917. top: 0%;
  918. left: 0%;
  919. z-index: 1;
  920. user-select: none;
  921. }
  922. body.screenshot-mode #menubar,
  923. body.screenshot-mode #options,
  924. body.screenshot-mode .scroll-button {
  925. display: none;
  926. }