| html, | |
| body, | |
| input { | |
| font-family: "Roboto", sans-serif; | |
| } | |
| a, a:visited { | |
| color: #369; | |
| } | |
| blockquote { | |
| border: 1px solid #ccc; | |
| padding: 0.5em 1em; | |
| } | |
| #output { | |
| line-height: 1.5em; | |
| } | |
| .force-hidden { | |
| visibility: hidden; | |
| } | |
| .uiblock { | |
| position: fixed; | |
| bottom: 0; | |
| left: 0; | |
| right: 0; | |
| top: 0; | |
| z-index: 999999; | |
| } | |
| /* Hide default Inform 7 template elements */ | |
| body.play > div.container, | |
| body.play > div.interpretercredit { | |
| display: none; | |
| } | |
| /* Basic styles */ | |
| .font-bold { | |
| font-weight: bold; | |
| } | |
| .font-italic { | |
| font-style: italic; | |
| } | |
| .font-underline { | |
| text-decoration: underline; | |
| } | |
| /* the following two are specified by the Haven interpreter but are unused in Vorple at the moment */ | |
| .font-proportional { | |
| font-family: "Roboto", serif; | |
| } | |
| .font-fixed-width { | |
| font-family: "Roboto Mono", monospace; | |
| } | |
| /* Vorple Screen Effects */ | |
| .center-align { | |
| text-align: center; | |
| } | |
| .right-align { | |
| text-align: right; | |
| } | |
| .cursive-font { | |
| font-style: italic; | |
| } | |
| .emphasized-font { | |
| font-style: italic; | |
| } | |
| .fantasy-font { | |
| font-family: fantasy; | |
| } | |
| .monospace-font { | |
| font-family: "Roboto Mono", monospace; | |
| } | |
| #output span.nowrap-font, | |
| #output span.nowrap-font * { | |
| white-space: nowrap; | |
| } | |
| .strikethrough-font { | |
| text-decoration: line-through; | |
| } | |
| .strong-font { | |
| font-weight: bold; | |
| } | |
| .underlined-font { | |
| text-decoration: underline; | |
| } | |
| .xx-small-font { | |
| font-size: xx-small; | |
| } | |
| .x-small-font { | |
| font-size: x-small; | |
| } | |
| .small-font { | |
| font-size: small; | |
| } | |
| .large-font { | |
| font-size: large; | |
| } | |
| .x-large-font { | |
| font-size: x-large; | |
| } | |
| .xx-large-font { | |
| font-size: xx-large; | |
| } | |
| .white-letters { | |
| color: #fff; | |
| } | |
| .black-letters { | |
| color: #000; | |
| } | |
| .blue-letters { | |
| color: #00a; | |
| } | |
| .green-letters { | |
| color: #0a0; | |
| } | |
| .cyan-letters { | |
| color: #0aa; | |
| } | |
| .red-letters { | |
| color: #a00; | |
| } | |
| .magenta-letters { | |
| color: #a0a; | |
| } | |
| .brown-letters { | |
| color: #a50; | |
| } | |
| .yellow-letters { | |
| color: #ff5; | |
| } | |
| .dark-gray-letters { | |
| color: #555; | |
| } | |
| .light-gray-letters { | |
| color: #aaa; | |
| } | |
| .light-blue-letters { | |
| color: #55f; | |
| } | |
| .light-green-letters { | |
| color: #5f5; | |
| } | |
| .light-cyan-letters { | |
| color: #5ff; | |
| } | |
| .light-red-letters { | |
| color: #f55; | |
| } | |
| .light-magenta-letters { | |
| color: #f5f; | |
| } | |
| .white-background { | |
| background-color: #fff; | |
| } | |
| .black-background { | |
| background-color: #000; | |
| } | |
| .blue-background { | |
| background-color: #00a; | |
| } | |
| .green-background { | |
| background-color: #0a0; | |
| } | |
| .cyan-background { | |
| background-color: #0aa; | |
| } | |
| .red-background { | |
| background-color: #a00; | |
| } | |
| .magenta-background { | |
| background-color: #a0a; | |
| } | |
| .brown-background { | |
| background-color: #a50; | |
| } | |
| .yellow-background { | |
| background-color: #ff5; | |
| } | |
| .dark-gray-background { | |
| background-color: #555; | |
| } | |
| .light-gray-background { | |
| background-color: #aaa; | |
| } | |
| .light-blue-background { | |
| background-color: #55f; | |
| } | |
| .light-green-background { | |
| background-color: #5f5; | |
| } | |
| .light-cyan-background { | |
| background-color: #5ff; | |
| } | |
| .light-red-background { | |
| background-color: #f55; | |
| } | |
| .light-magenta-background { | |
| background-color: #f5f; | |
| } | |
| /* Status line */ | |
| .status-line-container { | |
| display: flex; | |
| background-color: #fff; | |
| border-bottom: 3px double #ccc; | |
| position: -webkit-sticky; | |
| position: sticky; /* same as "fixed" in this case but positions it relative to parent element */ | |
| top: 0; | |
| white-space: pre-wrap; | |
| max-width: inherit; | |
| width: calc(100% + 30px); | |
| } | |
| .status-line-left { | |
| flex: 1; | |
| text-align: left; | |
| } | |
| .status-line-middle, | |
| .status-line-mobile { | |
| flex: 1; | |
| text-align: center; | |
| } | |
| .status-line-right { | |
| flex: 1; | |
| text-align: right; | |
| } | |
| /* Image alignments */ | |
| .vorple-image img { | |
| max-width: 100%; | |
| } | |
| .centered { | |
| text-align: center; | |
| } | |
| .left-aligned { | |
| text-align: left; | |
| } | |
| .right-aligned { | |
| text-align: right; | |
| } | |
| .left-floating { | |
| float: left; | |
| } | |
| .right-floating { | |
| float: right; | |
| } | |
| /* Modal windows */ | |
| .vex { | |
| z-index: 9999999; | |
| } | |
| body .vex.vex-theme-plain .vex-content { | |
| max-width: 850px; | |
| width: 90%; | |
| } | |
| .vex-dialog-message { | |
| white-space: pre-wrap; | |
| } | |
| /* Tooltips */ | |
| #powerTip { | |
| max-width: 90%; | |
| white-space: pre-wrap; | |
| } | |
| /* Responsive classes */ | |
| @media screen and (min-width: 569px) { | |
| .sm-only { | |
| display: none; | |
| } | |
| } | |
| @media screen and (max-width: 568px) { | |
| .lg-only { | |
| display: none; | |
| } | |
| } |
Xet Storage Details
- Size:
- 4.44 kB
- Xet hash:
- caeed796bfd2972711323b517ac31573e049cf80bae085f799c411895eefc462
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.