123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- /*
- Parchment
- =========
- Built: 2014-10-05
- Copyright (c) 2008-2014 The Parchment Contributors
- BSD licenced
- https://github.com/curiousdannii/parchment
- */
- /*
- General Parchment styles
- ========================
- Copyright (c) 2008-2011 The Parchment Contributors
- BSD licenced
- http://code.google.com/p/parchment
- */
- html
- {
- overflow-y: scroll;
- -webkit-text-size-adjust: none;
- }
- body
- {
- background: #FFF;
- color: #000;
- font-family: Georgia, Palatino, serif;
- font-size: 16px;
- margin: 0 0 8px;
- text-align: center;
- }
- #parchment
- {
- margin: 0 auto;
- text-align: left;
- }
- #gameport
- {
- line-height: 1.4;
- margin: 0 auto;
- text-align: left;
- width: 80%;
- }
- /* General dialogs */
- .dialog
- {
- background: #fff;
- border: 3px solid #ddd;
- border-radius: 10px;
- -webkit-box-shadow: 5px 5px 10px #777;
- box-shadow: 5px 5px 10px #777;
- left: 30%;
- padding: 0px 20px;
- position: fixed;
- top: 20%;
- width: 40%;
- }
- /* Load indicator */
- .load
- {
- text-align: left;
- }
- /* Front page panels */
- /* Load any web story file */
- .panel input
- {
- display: block;
- margin: 0 auto;
- width: 50%;
- }
- .error {
- background: red;
- color: white;
- padding: 10px;
- margin: 10px;
- }
- /*
- StructIO styles
- ===============
- Copyright (c) 2008-2012 The Parchment Contributors
- BSD licenced
- http://code.google.com/p/parchment
- */
- #parchment
- {
- white-space: pre-wrap;
- }
- /* Line input */
- .TextInput
- {
- background: none;
- border: 0;
- color: inherit;
- display: inline;
- font: inherit;
- outline: 0;
- padding: 0;
- }
- /* Character input (to be added to the above) */
- .CharInput
- {
- left: -999em;
- position: absolute;
- }
- /* Text grid window */
- .TextGrid
- {
- position: fixed;
- z-index: 2;
- }
- /* Floating boxes */
- .box
- {
- position: absolute;
- z-index: 1;
- }
- /* Main window */
- .main, .TextGrid
- {
- /* Extra padding in case some serifs stick outside the status window */
- padding: 0 1px;
- }
- /* Monospace text */
- tt
- {
- font-family: monospace;
- line-height: 1;
- }
- /*
- ZVM - the ifvms.js Z-Machine (versions 5 and 8)
- ===============================================
- Copyright (c) 2011-2013 The ifvms.js team
- BSD licenced
- http://github.com/curiousdannii/ifvms.js
- */
- /*
- These styles are required for the classes formatter
- ZVM also requires that the whole VM <div> have white-space: pre-wrap.
- */
- .zvm-bold { font-weight: bold; }
- .zvm-italic { font-style: italic; }
- .zvm-mono { font-family: monospace; line-height: 1; }
- .zvm-fg-2 { color: #000; }
- .zvm-bg-2 { background-color: #000; }
- .zvm-fg-3 { color: #ef0000; }
- .zvm-bg-3 { background-color: #ef0000; }
- .zvm-fg-4 { color: #00d600; }
- .zvm-bg-4 { background-color: #00d600; }
- .zvm-fg-5 { color: #efef00; }
- .zvm-bg-5 { background-color: #efef00; }
- .zvm-fg-6 { color: #006bb5; }
- .zvm-bg-6 { background-color: #006bb5; }
- .zvm-fg-7 { color: #f0f; }
- .zvm-bg-7 { background-color: #f0f; }
- .zvm-fg-8 { color: #00efef; }
- .zvm-bg-8 { background-color: #00efef; }
- .zvm-fg-9 { color: #fff; }
- .zvm-bg-9 { background-color: #fff; }
- .zvm-fg-10 { color: #b5b5b5; }
- .zvm-bg-10 { background-color: #b5b5b5; }
- .zvm-fg-11 { color: #8c8c8c; }
- .zvm-bg-11 { background-color: #8c8c8c; }
- .zvm-fg-12 { color: #5a5a5a; }
- .zvm-bg-12 { background-color: #5a5a5a; }
|