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

1098 строки
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. #options-attribution-citations {
  428. text-align: center;
  429. }
  430. .no-transition {
  431. transition: 0s !important;
  432. }
  433. .corner-ribbon {
  434. width: 200px;
  435. background: #e43;
  436. position: fixed;
  437. top: 25px;
  438. left: -50px;
  439. text-align: center;
  440. padding: 10px;
  441. letter-spacing: 1px;
  442. color: #f0f0f0;
  443. transform: rotate(-45deg);
  444. -webkit-transform: rotate(-45deg);
  445. }
  446. .corner-ribbon.bottom-right{
  447. top: auto;
  448. right: -50px;
  449. bottom: 25px;
  450. left: auto;
  451. transform: rotate(-45deg);
  452. -webkit-transform: rotate(-45deg);
  453. }
  454. a.corner-ribbon {
  455. text-decoration: none;
  456. }
  457. input[type=checkbox] {
  458. transform: scale(2);
  459. margin-left: 10px;
  460. margin-right: 10px;
  461. }
  462. input ~ label {
  463. user-select: none;
  464. }
  465. body.toggle-height-bars .height-bar,
  466. .entity-box.selected .height-bar {
  467. display: block;
  468. }
  469. .height-bar {
  470. display: none;
  471. min-width: calc(var(--xpos));
  472. min-height: 3px;
  473. height: 3px;
  474. position: absolute;
  475. opacity: 50%;
  476. background: repeating-linear-gradient(90deg, #ffffff, #ffffff 20px, #ffffff00 20px, #ffffff00 40px);
  477. top: calc(-100% + var(--extra));
  478. left: calc(-1 * var(--xpos));
  479. transition: 0s all;
  480. z-index: -1;
  481. }
  482. .height-bar::before {
  483. display: block;
  484. background: gray;
  485. position: absolute;
  486. content: var(--entity-height);
  487. transition: 0s all;
  488. }
  489. .height-bar::after {
  490. display: block;
  491. min-width: 24px;
  492. min-height: 3px;
  493. background: #ffffff;
  494. position: absolute;
  495. left: calc(var(--xpos) - 24px);
  496. transition: 0s all;
  497. content: "";
  498. }
  499. .sr-only {
  500. position: absolute;
  501. width: 1px;
  502. height: 1px;
  503. padding: 0;
  504. margin: -1px;
  505. overflow: hidden;
  506. clip: rect(0,0,0,0);
  507. border: 0;
  508. }
  509. .bottom-cover {
  510. display: none;
  511. position: absolute;
  512. width: 100%;
  513. height: 100vh;
  514. left: 0%;
  515. top: calc(100% - 51px);
  516. background: black;
  517. }
  518. body.toggle-bottom-cover .bottom-cover {
  519. display: inline-block;
  520. }
  521. .transitions {
  522. transition: 0.2s all;
  523. }
  524. .rotate-forward {
  525. transform: rotate(-90deg);
  526. }
  527. .rotate-backward {
  528. transform: rotate(90deg);
  529. }
  530. .flipped {
  531. transform: rotate(180deg);
  532. }
  533. i.fas
  534. i.far {
  535. pointer-events: none;
  536. }
  537. #help-icons {
  538. display: flex;
  539. flex-direction: column;
  540. flex-wrap: wrap;
  541. width: 50vw;
  542. }
  543. #help-icons > div {
  544. flex-basis: 25%;
  545. font-size: 150%;
  546. }
  547. #entity-view {
  548. text-align: center;
  549. font-weight: bold;
  550. font-size: 200%;
  551. }
  552. #spawners > select,
  553. #spawners > button,
  554. #filters > select,
  555. #filters > button {
  556. display: none;
  557. }
  558. #spawners > select#category-picker,
  559. #filters > select#filter-picker {
  560. display: block;
  561. }
  562. #spawners > select.category-visible,
  563. #spawners > select.category-visible + button,
  564. #filters > select.category-visible,
  565. #filters > select.category-visible + button {
  566. display: block;
  567. }
  568. option.filtered {
  569. display: none;
  570. }
  571. #spawners > select,
  572. #filters > select {
  573. font-size: 24pt;
  574. }
  575. #spawners > button {
  576. font-size: 30pt;
  577. }
  578. #spawners-categories {
  579. font-size: 24pt;
  580. }
  581. .scroll-button {
  582. position: absolute;
  583. height: 20%;
  584. width: 50px;
  585. font-size: 40px;
  586. background: #ffffff33;
  587. border: 0px;
  588. z-index: 1002;
  589. }
  590. .scroll-button:active {
  591. background: #ffffff66;
  592. }
  593. .scroll-button:hover {
  594. background: #ffffff44;
  595. }
  596. .scroll-button:disabled {
  597. background: #ffffff11;
  598. }
  599. #zoom-out {
  600. left: 0%;
  601. top: 0%;
  602. }
  603. #zoom-in {
  604. right: 0%;
  605. top: 0%;
  606. }
  607. #scroll-left {
  608. left: 0%;
  609. top: 20%;
  610. }
  611. #scroll-right {
  612. right: 0%;
  613. top: 20%;
  614. }
  615. #scroll-up {
  616. left: 0%;
  617. top: 40%;
  618. }
  619. #scroll-down {
  620. right: 0%;
  621. top: 40%;
  622. }
  623. #shrink {
  624. left: 0%;
  625. top: 60%;
  626. }
  627. #grow {
  628. right: 0%;
  629. top: 60%;
  630. }
  631. #ruler {
  632. left: 0%;
  633. top: 80%;
  634. }
  635. #fit {
  636. right: 0%;
  637. top: 80%;
  638. }
  639. #toggle-menu {
  640. padding-top: 2pt;
  641. position: relative;
  642. }
  643. .popout-menu {
  644. display: none;
  645. flex-direction: column;
  646. flex-wrap: nowrap;
  647. overflow-y: scroll;
  648. max-height: 80vh;
  649. justify-content: start;
  650. position: fixed;
  651. top: 10%;
  652. left: 10%;
  653. z-index: 10000;
  654. background: #222;
  655. border-color: #333;
  656. border-width: 5px;
  657. border-style: solid;
  658. }
  659. .popout-menu::-webkit-scrollbar {
  660. height: 2px;
  661. }
  662. .popout-menu::-webkit-scrollbar-button {
  663. width: 0px;
  664. height: 0px;
  665. }
  666. .popout-menu::-webkit-scrollbar-thumb {
  667. background: #e1e1e1;
  668. border: 0px none #ffffff;
  669. border-radius: 50px;
  670. }
  671. .popout-menu::-webkit-scrollbar-thumb:hover {
  672. background: #ffffff;
  673. }
  674. .popout-menu::-webkit-scrollbar-thumb:active {
  675. background: #000000;
  676. }
  677. .popout-menu::-webkit-scrollbar-track {
  678. background: #00000000;
  679. border: 0px none #ffffff;
  680. border-radius: 50px;
  681. }
  682. .popout-menu::-webkit-scrollbar-track:hover {
  683. background: #666666;
  684. }
  685. .popout-menu::-webkit-scrollbar-track:active {
  686. background: #333333;
  687. }
  688. .popout-menu::-webkit-scrollbar-corner {
  689. background: transparent;
  690. }
  691. .popout-menu.visible {
  692. display: flex;
  693. }
  694. .menu-button {
  695. height: 48pt;
  696. width: 56pt;
  697. font-size: 40pt;
  698. }
  699. .menu-button-holder {
  700. display: flex;
  701. align-items: center;
  702. margin: 5px 0px 5px;
  703. }
  704. .menu-text {
  705. font-size: 24pt;
  706. margin-left: 6pt;
  707. }
  708. #options-entity-defaults > button {
  709. word-break: break-word;
  710. }
  711. button {
  712. border: 3px;
  713. border-style: outset;
  714. }
  715. button:hover {
  716. background: #555;
  717. }
  718. button:enabled:active {
  719. border-style: inset;
  720. background: #aaa;
  721. }
  722. .toast {
  723. position: absolute;
  724. bottom: 10%;
  725. left: 50%;
  726. animation-name: toast-animation;
  727. animation-duration: 5s;
  728. animation-timing-function: linear;
  729. z-index: 99999;
  730. }
  731. @keyframes toast-animation {
  732. 0% {
  733. transform: translate(-50%, 0);
  734. opacity: 1;
  735. }
  736. 50% {
  737. transform: translate(-50%, -10vh);
  738. opacity: 1;
  739. }
  740. 100% {
  741. transform: translate(-50%, -20vh);
  742. opacity: 0;
  743. }
  744. }
  745. #help-menu *::-webkit-scrollbar {
  746. height: 2px;
  747. }
  748. #help-menu *::-webkit-scrollbar-button {
  749. width: 0px;
  750. height: 0px;
  751. }
  752. #help-menu *::-webkit-scrollbar-thumb {
  753. background: #e1e1e1;
  754. border: 0px none #ffffff;
  755. border-radius: 50px;
  756. }
  757. #help-menu *::-webkit-scrollbar-thumb:hover {
  758. background: #ffffff;
  759. }
  760. #help-menu *::-webkit-scrollbar-thumb:active {
  761. background: #000000;
  762. }
  763. #help-menu *::-webkit-scrollbar-track {
  764. background: #00000000;
  765. border: 0px none #ffffff;
  766. border-radius: 50px;
  767. }
  768. #help-menu *::-webkit-scrollbar-track:hover {
  769. background: #666666;
  770. }
  771. #help-menu *::-webkit-scrollbar-track:active {
  772. background: #333333;
  773. }
  774. #help-menu *::-webkit-scrollbar-corner {
  775. background: transparent;
  776. }
  777. #help-menu {
  778. display: none;
  779. position: absolute;
  780. width: 100vw;
  781. height: 100vh;
  782. z-index: 100001;
  783. overflow-x: hidden;
  784. }
  785. #help-menu.visible {
  786. display: flex;
  787. }
  788. #table-of-contents-holder {
  789. flex: 1 1 30%;
  790. padding: 15px;
  791. background: #111;
  792. overflow-y: auto;
  793. }
  794. #table-of-contents {
  795. line-height: 2;
  796. }
  797. #table-of-contents li {
  798. font-size: 150%;
  799. user-select: none;
  800. }
  801. #table-of-contents li:hover {
  802. color: #ccc;
  803. }
  804. #table-of-contents button {
  805. position: relative;
  806. width: 50pt;
  807. height: 50pt;
  808. font-size: 40pt;
  809. }
  810. #table-of-contents button i {
  811. position: absolute;
  812. top: 50%;
  813. left: 50%;
  814. transform: translate(-50%, -50%);
  815. }
  816. #help-contents-holder {
  817. flex: 1 1 70%;
  818. background: #333;
  819. padding: 25px;
  820. overflow-y: auto;
  821. }
  822. #help-contents > h2 {
  823. font-size: 250%;
  824. }
  825. #help-contents > h2 {
  826. margin-bottom: 16pt;
  827. }
  828. #help-contents > h2:nth-child(1n+2) {
  829. margin-top: 32pt;
  830. }
  831. #help-contents p {
  832. text-indent: 20pt;
  833. max-width: 60em;
  834. line-height: 1.4em;
  835. width: 80%;
  836. margin-bottom: 8pt;
  837. margin-top: 8pt;
  838. }
  839. #help-contents i.fas {
  840. text-indent: 0pt;
  841. margin-left: 2pt;
  842. margin-right: 2pt;
  843. }
  844. #help-contents ul {
  845. list-style: circle;
  846. line-height: 1.4;
  847. }
  848. #help-contents b {
  849. font-weight: bolder;
  850. }
  851. #help-contents li {
  852. margin-left: 2em;
  853. }
  854. #help-contents img {
  855. display: block;
  856. width: 80%;
  857. max-width: 60em;
  858. height: 60pt;
  859. }
  860. .nsfw {
  861. color: red;
  862. font-style: bold;
  863. }
  864. select {
  865. background: #111;
  866. color: #eee;
  867. border-color: #444;
  868. }
  869. select > option {
  870. color: #eee;
  871. }
  872. button:focus,
  873. select:focus,
  874. input:focus {
  875. outline-color: #eee;
  876. }
  877. input {
  878. background: #111;
  879. color: #eee;
  880. border-color: #444;
  881. }
  882. button {
  883. background: #111;
  884. color: #ddd;
  885. border-color: #666;
  886. }
  887. .settings-holder {
  888. display: flex;
  889. align-items: center;
  890. padding: 10px 0px 10px;
  891. border-color: #222;
  892. border-width: 5px;
  893. border-style: solid;
  894. max-width: 360pt;
  895. height: 60pt;
  896. }
  897. .settings-holder.enabled {
  898. background: green;
  899. border-color: darkgreen;
  900. }
  901. .settings-desc {
  902. text-align: right;
  903. margin-right: 8pt;
  904. user-select: none;
  905. flex: 1;
  906. }
  907. .settings-holder.disabled {
  908. background: gray;
  909. border-color: darkslategray;
  910. }
  911. .settings-name {
  912. font-size: 200%;
  913. margin-left: 8pt;
  914. user-select: none;
  915. max-width: 120pt;
  916. width: 120pt;
  917. }
  918. .settings-holder > select {
  919. height: 100%;
  920. background: darkgreen;
  921. font-size: 16pt;
  922. }
  923. .filter-button > i {
  924. color: gray;
  925. }
  926. .button-counter {
  927. position: absolute;
  928. color: white;
  929. opacity: 0.75;
  930. width: 25%;
  931. height: 25%;
  932. font-size: 16pt;
  933. top: 0%;
  934. left: 0%;
  935. z-index: 1;
  936. user-select: none;
  937. }
  938. body.screenshot-mode #menubar,
  939. body.screenshot-mode #options,
  940. body.screenshot-mode .scroll-button {
  941. display: none;
  942. }