less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

1092 строки
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. #rulers {
  257. position: absolute;
  258. display: block;
  259. width: 100%;
  260. height: 100%;
  261. background: #00000000;
  262. }
  263. #display {
  264. display: block;
  265. width: 100%;
  266. height: 100%;
  267. background: #333;
  268. }
  269. #options .options-label,
  270. #options .options-banner {
  271. flex: 0 1;
  272. font-size: 150%;
  273. }
  274. #options .options-label {
  275. width: 100%;
  276. }
  277. #options .options-banner {
  278. width: calc(100% - 20px);
  279. }
  280. .options-row .options-field-numeric {
  281. flex: 1 1 100%;
  282. max-width: 90%;
  283. font-size: 150%;
  284. }
  285. .options-row .options-field-text {
  286. flex: 1 0 90%;
  287. max-width: 90%;
  288. font-size: 150%;
  289. }
  290. .options-row .options-field-unit {
  291. flex: 1 1 10%;
  292. max-width: 90%;
  293. font-size: 150%;
  294. }
  295. .options-row .options-field-picker {
  296. flex: 1;
  297. width: 100%;
  298. min-width: 90%;
  299. max-width: 90%;
  300. font-size: 150%;
  301. overflow: hidden;
  302. white-space: pre-wrap;
  303. word-break: normal;
  304. text-overflow: ellipsis;
  305. }
  306. .options-row .symbol-button {
  307. width: 75px;
  308. font-size: 70px;
  309. }
  310. .options-row .options-button {
  311. flex: 1;
  312. width: 100%;
  313. font-size: 150%;
  314. }
  315. .options-block .options-button {
  316. flex: 1;
  317. width: 100%;
  318. font-size: 150%;
  319. }
  320. .options-row label {
  321. flex: 1;
  322. width: 100%;
  323. font-size: 150%;
  324. }
  325. body #test-canvas {
  326. position: fixed;
  327. top: 500vh;
  328. }
  329. .switch {
  330. height: 24pt;
  331. }
  332. .switch input {
  333. transform: scale(2);
  334. }
  335. .top-name {
  336. display: none;
  337. text-align: center;
  338. position: fixed;
  339. max-width: 150px;
  340. height: 50px;
  341. transform: translate(-50%, 20pt);
  342. z-index: 1001;
  343. }
  344. body.toggle-top-name .top-name.top-name-needed {
  345. display: block;
  346. }
  347. .top-name::after {
  348. display: block;
  349. background-image: url("./media/ui/arrow.svg");
  350. width: 70px;
  351. height: 70px;
  352. background-size: 70px 70px;
  353. background-repeat: no-repeat;
  354. content: "";
  355. transform: translate(0, -120%);
  356. }
  357. .bottom-name {
  358. display: none;
  359. text-align: center;
  360. position: fixed;
  361. width: 150px;
  362. height: 50px;
  363. z-index: 10001;
  364. transform: translate(-50%, 0pt);
  365. }
  366. body.toggle-bottom-name .bottom-name {
  367. display: inline;
  368. }
  369. #menubar select {
  370. font-size: 16pt;
  371. max-width: 200pt;
  372. min-width: 120pt;
  373. height: 40pt;
  374. max-height: 180pt;
  375. overflow: hidden;
  376. white-space: pre-wrap;
  377. word-break: normal;
  378. text-overflow: ellipsis;
  379. }
  380. #menubar button {
  381. position: relative;
  382. font-size: 32pt;
  383. height: 40pt;
  384. z-index: 1;
  385. }
  386. #open-help {
  387. padding-top: 1pt;
  388. }
  389. #open-help.highlighted::after {
  390. position: absolute;
  391. top: 0;
  392. left: 0;
  393. content: " ";
  394. display: block;
  395. height: 100%;
  396. width: 100%;
  397. background: inherit;
  398. filter: drop-shadow(0px 0px 10px white) drop-shadow(0px 0px 10px white);
  399. z-index: -1;
  400. animation: pulsing 5s linear 0s infinite;
  401. }
  402. @keyframes pulsing {
  403. 0% {
  404. opacity: 100%;
  405. }
  406. 50% {
  407. opacity: 25%;
  408. }
  409. 100% {
  410. opacity: 100%;
  411. }
  412. }
  413. a {
  414. color: #999;
  415. }
  416. #options-attribution-authors {
  417. text-align: center;
  418. }
  419. #options-attribution-owners {
  420. text-align: center;
  421. }
  422. #options-attribution-source {
  423. text-align: center;
  424. }
  425. .no-transition {
  426. transition: 0s !important;
  427. }
  428. .corner-ribbon {
  429. width: 200px;
  430. background: #e43;
  431. position: fixed;
  432. top: 25px;
  433. left: -50px;
  434. text-align: center;
  435. padding: 10px;
  436. letter-spacing: 1px;
  437. color: #f0f0f0;
  438. transform: rotate(-45deg);
  439. -webkit-transform: rotate(-45deg);
  440. }
  441. .corner-ribbon.bottom-right{
  442. top: auto;
  443. right: -50px;
  444. bottom: 25px;
  445. left: auto;
  446. transform: rotate(-45deg);
  447. -webkit-transform: rotate(-45deg);
  448. }
  449. a.corner-ribbon {
  450. text-decoration: none;
  451. }
  452. input[type=checkbox] {
  453. transform: scale(2);
  454. margin-left: 10px;
  455. margin-right: 10px;
  456. }
  457. input ~ label {
  458. user-select: none;
  459. }
  460. body.toggle-height-bars .height-bar,
  461. .entity-box.selected .height-bar {
  462. display: block;
  463. }
  464. .height-bar {
  465. display: none;
  466. min-width: calc(var(--xpos));
  467. min-height: 3px;
  468. height: 3px;
  469. position: absolute;
  470. opacity: 50%;
  471. background: repeating-linear-gradient(90deg, #ffffff, #ffffff 20px, #ffffff00 20px, #ffffff00 40px);
  472. top: calc(-100% + var(--extra));
  473. left: calc(-1 * var(--xpos));
  474. transition: 0s all;
  475. z-index: -1;
  476. }
  477. .height-bar::before {
  478. display: block;
  479. background: gray;
  480. position: absolute;
  481. content: var(--entity-height);
  482. transition: 0s all;
  483. }
  484. .height-bar::after {
  485. display: block;
  486. min-width: 24px;
  487. min-height: 3px;
  488. background: #ffffff;
  489. position: absolute;
  490. left: calc(var(--xpos) - 24px);
  491. transition: 0s all;
  492. content: "";
  493. }
  494. .sr-only {
  495. position: absolute;
  496. width: 1px;
  497. height: 1px;
  498. padding: 0;
  499. margin: -1px;
  500. overflow: hidden;
  501. clip: rect(0,0,0,0);
  502. border: 0;
  503. }
  504. .bottom-cover {
  505. display: none;
  506. position: absolute;
  507. width: 100%;
  508. height: 100vh;
  509. left: 0%;
  510. top: calc(100% - 51px);
  511. background: black;
  512. }
  513. body.toggle-bottom-cover .bottom-cover {
  514. display: inline-block;
  515. }
  516. .transitions {
  517. transition: 0.2s all;
  518. }
  519. .rotate-forward {
  520. transform: rotate(-90deg);
  521. }
  522. .rotate-backward {
  523. transform: rotate(90deg);
  524. }
  525. .flipped {
  526. transform: rotate(180deg);
  527. }
  528. i.fas
  529. i.far {
  530. pointer-events: none;
  531. }
  532. #help-icons {
  533. display: flex;
  534. flex-direction: column;
  535. flex-wrap: wrap;
  536. width: 50vw;
  537. }
  538. #help-icons > div {
  539. flex-basis: 25%;
  540. font-size: 150%;
  541. }
  542. #entity-view {
  543. text-align: center;
  544. font-weight: bold;
  545. font-size: 200%;
  546. }
  547. #spawners > select,
  548. #spawners > button,
  549. #filters > select,
  550. #filters > button {
  551. display: none;
  552. }
  553. #spawners > select#category-picker,
  554. #filters > select#filter-picker {
  555. display: block;
  556. }
  557. #spawners > select.category-visible,
  558. #spawners > select.category-visible + button,
  559. #filters > select.category-visible,
  560. #filters > select.category-visible + button {
  561. display: block;
  562. }
  563. option.filtered {
  564. display: none;
  565. }
  566. #spawners > select,
  567. #filters > select {
  568. font-size: 24pt;
  569. }
  570. #spawners > button {
  571. font-size: 30pt;
  572. }
  573. #spawners-categories {
  574. font-size: 24pt;
  575. }
  576. .scroll-button {
  577. position: absolute;
  578. height: 20%;
  579. width: 50px;
  580. font-size: 40px;
  581. background: #ffffff33;
  582. border: 0px;
  583. z-index: 1002;
  584. }
  585. .scroll-button:active {
  586. background: #ffffff66;
  587. }
  588. .scroll-button:hover {
  589. background: #ffffff44;
  590. }
  591. .scroll-button:disabled {
  592. background: #ffffff11;
  593. }
  594. #zoom-out {
  595. left: 0%;
  596. top: 0%;
  597. }
  598. #zoom-in {
  599. right: 0%;
  600. top: 0%;
  601. }
  602. #scroll-left {
  603. left: 0%;
  604. top: 20%;
  605. }
  606. #scroll-right {
  607. right: 0%;
  608. top: 20%;
  609. }
  610. #scroll-up {
  611. left: 0%;
  612. top: 40%;
  613. }
  614. #scroll-down {
  615. right: 0%;
  616. top: 40%;
  617. }
  618. #shrink {
  619. left: 0%;
  620. top: 60%;
  621. }
  622. #grow {
  623. right: 0%;
  624. top: 60%;
  625. }
  626. #ruler {
  627. left: 0%;
  628. top: 80%;
  629. }
  630. #fit {
  631. right: 0%;
  632. top: 80%;
  633. }
  634. #toggle-menu {
  635. padding-top: 2pt;
  636. position: relative;
  637. }
  638. .popout-menu {
  639. display: none;
  640. flex-direction: column;
  641. flex-wrap: nowrap;
  642. overflow-y: scroll;
  643. max-height: 80vh;
  644. justify-content: start;
  645. position: fixed;
  646. top: 10%;
  647. left: 10%;
  648. z-index: 10000;
  649. background: #222;
  650. border-color: #333;
  651. border-width: 5px;
  652. border-style: solid;
  653. }
  654. .popout-menu::-webkit-scrollbar {
  655. height: 2px;
  656. }
  657. .popout-menu::-webkit-scrollbar-button {
  658. width: 0px;
  659. height: 0px;
  660. }
  661. .popout-menu::-webkit-scrollbar-thumb {
  662. background: #e1e1e1;
  663. border: 0px none #ffffff;
  664. border-radius: 50px;
  665. }
  666. .popout-menu::-webkit-scrollbar-thumb:hover {
  667. background: #ffffff;
  668. }
  669. .popout-menu::-webkit-scrollbar-thumb:active {
  670. background: #000000;
  671. }
  672. .popout-menu::-webkit-scrollbar-track {
  673. background: #00000000;
  674. border: 0px none #ffffff;
  675. border-radius: 50px;
  676. }
  677. .popout-menu::-webkit-scrollbar-track:hover {
  678. background: #666666;
  679. }
  680. .popout-menu::-webkit-scrollbar-track:active {
  681. background: #333333;
  682. }
  683. .popout-menu::-webkit-scrollbar-corner {
  684. background: transparent;
  685. }
  686. .popout-menu.visible {
  687. display: flex;
  688. }
  689. .menu-button {
  690. height: 48pt;
  691. width: 56pt;
  692. font-size: 40pt;
  693. }
  694. .menu-button-holder {
  695. display: flex;
  696. align-items: center;
  697. margin: 5px 0px 5px;
  698. }
  699. .menu-text {
  700. font-size: 24pt;
  701. margin-left: 6pt;
  702. }
  703. #options-entity-defaults > button {
  704. word-break: break-word;
  705. }
  706. button {
  707. border: 3px;
  708. border-style: outset;
  709. }
  710. button:hover {
  711. background: #555;
  712. }
  713. button:enabled:active {
  714. border-style: inset;
  715. background: #aaa;
  716. }
  717. .toast {
  718. position: absolute;
  719. bottom: 10%;
  720. left: 50%;
  721. animation-name: toast-animation;
  722. animation-duration: 5s;
  723. animation-timing-function: linear;
  724. z-index: 99999;
  725. }
  726. @keyframes toast-animation {
  727. 0% {
  728. transform: translate(-50%, 0);
  729. opacity: 1;
  730. }
  731. 50% {
  732. transform: translate(-50%, -10vh);
  733. opacity: 1;
  734. }
  735. 100% {
  736. transform: translate(-50%, -20vh);
  737. opacity: 0;
  738. }
  739. }
  740. #help-menu *::-webkit-scrollbar {
  741. height: 2px;
  742. }
  743. #help-menu *::-webkit-scrollbar-button {
  744. width: 0px;
  745. height: 0px;
  746. }
  747. #help-menu *::-webkit-scrollbar-thumb {
  748. background: #e1e1e1;
  749. border: 0px none #ffffff;
  750. border-radius: 50px;
  751. }
  752. #help-menu *::-webkit-scrollbar-thumb:hover {
  753. background: #ffffff;
  754. }
  755. #help-menu *::-webkit-scrollbar-thumb:active {
  756. background: #000000;
  757. }
  758. #help-menu *::-webkit-scrollbar-track {
  759. background: #00000000;
  760. border: 0px none #ffffff;
  761. border-radius: 50px;
  762. }
  763. #help-menu *::-webkit-scrollbar-track:hover {
  764. background: #666666;
  765. }
  766. #help-menu *::-webkit-scrollbar-track:active {
  767. background: #333333;
  768. }
  769. #help-menu *::-webkit-scrollbar-corner {
  770. background: transparent;
  771. }
  772. #help-menu {
  773. display: none;
  774. position: absolute;
  775. width: 100vw;
  776. height: 100vh;
  777. z-index: 100001;
  778. overflow-x: hidden;
  779. }
  780. #help-menu.visible {
  781. display: flex;
  782. }
  783. #table-of-contents-holder {
  784. flex: 1 1 30%;
  785. padding: 15px;
  786. background: #111;
  787. overflow-y: auto;
  788. }
  789. #table-of-contents {
  790. line-height: 2;
  791. }
  792. #table-of-contents li {
  793. font-size: 150%;
  794. user-select: none;
  795. }
  796. #table-of-contents li:hover {
  797. color: #ccc;
  798. }
  799. #table-of-contents button {
  800. position: relative;
  801. width: 50pt;
  802. height: 50pt;
  803. font-size: 40pt;
  804. }
  805. #table-of-contents button i {
  806. position: absolute;
  807. top: 50%;
  808. left: 50%;
  809. transform: translate(-50%, -50%);
  810. }
  811. #help-contents-holder {
  812. flex: 1 1 70%;
  813. background: #333;
  814. padding: 25px;
  815. overflow-y: auto;
  816. }
  817. #help-contents > h2 {
  818. font-size: 250%;
  819. }
  820. #help-contents > h2 {
  821. margin-bottom: 16pt;
  822. }
  823. #help-contents > h2:nth-child(1n+2) {
  824. margin-top: 32pt;
  825. }
  826. #help-contents p {
  827. text-indent: 20pt;
  828. max-width: 60em;
  829. line-height: 1.4em;
  830. width: 80%;
  831. margin-bottom: 8pt;
  832. margin-top: 8pt;
  833. }
  834. #help-contents i.fas {
  835. text-indent: 0pt;
  836. margin-left: 2pt;
  837. margin-right: 2pt;
  838. }
  839. #help-contents ul {
  840. list-style: circle;
  841. line-height: 1.4;
  842. }
  843. #help-contents b {
  844. font-weight: bolder;
  845. }
  846. #help-contents li {
  847. margin-left: 2em;
  848. }
  849. #help-contents img {
  850. display: block;
  851. width: 80%;
  852. max-width: 60em;
  853. height: 60pt;
  854. }
  855. .nsfw {
  856. color: red;
  857. font-style: bold;
  858. }
  859. select {
  860. background: #111;
  861. color: #eee;
  862. border-color: #444;
  863. }
  864. select > option {
  865. color: #eee;
  866. }
  867. button:focus,
  868. select:focus,
  869. input:focus {
  870. outline-color: #eee;
  871. }
  872. input {
  873. background: #111;
  874. color: #eee;
  875. border-color: #444;
  876. }
  877. button {
  878. background: #111;
  879. color: #ddd;
  880. border-color: #666;
  881. }
  882. .settings-holder {
  883. display: flex;
  884. align-items: center;
  885. padding: 10px 0px 10px;
  886. border-color: #222;
  887. border-width: 5px;
  888. border-style: solid;
  889. max-width: 360pt;
  890. height: 60pt;
  891. }
  892. .settings-holder.enabled {
  893. background: green;
  894. border-color: darkgreen;
  895. }
  896. .settings-desc {
  897. text-align: right;
  898. margin-right: 8pt;
  899. user-select: none;
  900. flex: 1;
  901. }
  902. .settings-holder.disabled {
  903. background: gray;
  904. border-color: darkslategray;
  905. }
  906. .settings-name {
  907. font-size: 200%;
  908. margin-left: 8pt;
  909. user-select: none;
  910. max-width: 120pt;
  911. width: 120pt;
  912. }
  913. .settings-holder > select {
  914. height: 100%;
  915. background: darkgreen;
  916. font-size: 16pt;
  917. }
  918. .filter-button > i {
  919. color: gray;
  920. }
  921. .button-counter {
  922. position: absolute;
  923. color: white;
  924. opacity: 0.75;
  925. width: 25%;
  926. height: 25%;
  927. font-size: 16pt;
  928. top: 0%;
  929. left: 0%;
  930. z-index: 1;
  931. user-select: none;
  932. }
  933. body.screenshot-mode #menubar,
  934. body.screenshot-mode #options,
  935. body.screenshot-mode .scroll-button {
  936. display: none;
  937. }