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

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