screen.css 21 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007
  1. /* Welcome to Compass.
  2. * In this file you should write your main styles. (or centralize your imports)
  3. * Import this file using the following HTML or equivalent:
  4. * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
  5. /* line 7, ../sass/screen.scss */
  6. p {
  7. margin: 0px;
  8. padding: 0px;
  9. }
  10. /* line 1, ../sass/_page.scss */
  11. .error {
  12. padding: 0.5em;
  13. background-color: #d6a3a7;
  14. color: #780100;
  15. }
  16. /* line 5, ../sass/_page.scss */
  17. .error:before {
  18. content: "ERROR: ";
  19. font-weight: bold;
  20. }
  21. /* line 11, ../sass/_page.scss */
  22. .unselectable, .textLink, .lineLink, .columnLink, .ccButton, .roomObject, .roomDirection, .rememberedRoomLink, .inventoryLink, .statusLink, .roundButton, p.choice, .combatChoice {
  23. -moz-user-select: -moz-none;
  24. -khtml-user-select: none;
  25. -webkit-user-select: none;
  26. -o-user-select: none;
  27. user-select: none;
  28. }
  29. /* line 17, ../sass/_page.scss */
  30. .unselectable:hover, .textLink:hover, .lineLink:hover, .columnLink:hover, .ccButton:hover, .roomObject:hover, .roomDirection:hover, .rememberedRoomLink:hover, .inventoryLink:hover, .statusLink:hover, .roundButton:hover, p.choice:hover, .combatChoice:hover {
  31. cursor: default;
  32. }
  33. /* line 23, ../sass/_page.scss */
  34. .scrollbar::-webkit-scrollbar-track {
  35. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  36. background-color: #F5F5F5;
  37. }
  38. /* line 28, ../sass/_page.scss */
  39. .scrollbar::-webkit-scrollbar {
  40. width: 6px;
  41. background-color: #F5F5F5;
  42. }
  43. /* line 33, ../sass/_page.scss */
  44. .scrollbar::-webkit-scrollbar-thumb {
  45. background-color: #000000;
  46. }
  47. /* line 38, ../sass/_page.scss */
  48. .header, .roomName, .roomExitsHeader, .inventoryHeader, .appearanceHeader {
  49. font-weight: bold;
  50. font-variant: small-caps;
  51. font-size: 1.1rem;
  52. }
  53. /* line 44, ../sass/_page.scss */
  54. .alignRight {
  55. text-align: right;
  56. }
  57. /* line 48, ../sass/_page.scss */
  58. .alignCenter {
  59. text-align: center;
  60. }
  61. /* line 53, ../sass/_page.scss */
  62. body {
  63. background-color: #000;
  64. }
  65. /* line 57, ../sass/_page.scss */
  66. #mainPage {
  67. background-color: #fff;
  68. }
  69. /* line 61, ../sass/_page.scss */
  70. #mainPage, .topBottomFlex {
  71. position: absolute;
  72. left: 0px;
  73. top: 0px;
  74. width: 100%;
  75. height: 100%;
  76. display: flex;
  77. flex-direction: column;
  78. flex-wrap: nowrap;
  79. justify-content: flex-start;
  80. align-content: stretch;
  81. align-items: flex-start;
  82. }
  83. /* line 75, ../sass/_page.scss */
  84. .leftRightFlex {
  85. display: flex;
  86. flex-direction: row;
  87. flex-wrap: nowrap;
  88. justify-content: flex-start;
  89. align-content: stretch;
  90. align-items: flex-start;
  91. }
  92. /* line 84, ../sass/_page.scss */
  93. #mainPage {
  94. color: #000;
  95. font-family: "Source Sans Pro";
  96. }
  97. /* line 89, ../sass/_page.scss */
  98. #statusLine, .noshrinkFlex, #roomExitsHolder {
  99. flex: 0 0 auto;
  100. align-self: stretch;
  101. height: auto;
  102. overflow: visible;
  103. position: relative;
  104. }
  105. /* line 97, ../sass/_page.scss */
  106. #statusLine {
  107. background-color: black;
  108. color: #FFF;
  109. font-family: "Cousine";
  110. white-space: nowrap;
  111. padding: 0.4rem;
  112. }
  113. /* line 105, ../sass/_page.scss */
  114. .statusColumnRight {
  115. margin-left: auto;
  116. }
  117. /* line 109, ../sass/_page.scss */
  118. .statusColumnCenter {
  119. margin-left: auto;
  120. margin-right: auto;
  121. }
  122. /* line 114, ../sass/_page.scss */
  123. .statusColumnDivider {
  124. border-right: #fff solid 1px;
  125. margin-left: 0.5rem;
  126. margin-right: 0.5rem;
  127. }
  128. /* line 120, ../sass/_page.scss */
  129. #gameContainer, .growingFlex {
  130. flex: 1 1 auto;
  131. align-self: stretch;
  132. position: relative;
  133. }
  134. /* line 126, ../sass/_page.scss */
  135. #leftWindow, #centerWindow, #rightWindow {
  136. flex: 1 0 auto;
  137. align-self: auto;
  138. flex-grow: 1;
  139. min-width: 10rem;
  140. position: relative;
  141. background-color: #fff;
  142. }
  143. /* line 135, ../sass/_page.scss */
  144. #centerWindow {
  145. max-width: 60%;
  146. flex: 1 1 auto;
  147. flex-grow: 4;
  148. }
  149. /* line 141, ../sass/_page.scss */
  150. #windowContainer {
  151. display: flex;
  152. flex-direction: row;
  153. flex-wrap: nowrap;
  154. justify-content: flex-start;
  155. align-content: stretch;
  156. align-items: stretch;
  157. height: 100%;
  158. width: 100%;
  159. position: absolute;
  160. }
  161. /* line 153, ../sass/_page.scss */
  162. #currentTurn {
  163. overflow-x: hidden;
  164. overflow-y: scroll;
  165. min-height: 100px;
  166. background: linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 75%, rgba(0, 0, 0, 0.06) 100%);
  167. }
  168. /* line 160, ../sass/_page.scss */
  169. #currentTurn > * {
  170. animation: fadein 1s;
  171. }
  172. @keyframes fadein {
  173. from {
  174. opacity: 0;
  175. }
  176. to {
  177. opacity: 1;
  178. }
  179. }
  180. /* line 168, ../sass/_page.scss */
  181. #leftWindow {
  182. background: linear-gradient(to right, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.09) 50%, rgba(0, 0, 0, 0.06) 100%);
  183. }
  184. /* line 172, ../sass/_page.scss */
  185. #appearanceTab {
  186. overflow: auto;
  187. padding: 0.8rem;
  188. }
  189. /* line 178, ../sass/_page.scss */
  190. #inventoryTab {
  191. overflow: hidden;
  192. }
  193. /* line 183, ../sass/_page.scss */
  194. #currentRoomTab {
  195. overflow: hidden;
  196. background: linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 75%, rgba(0, 0, 0, 0.03) 100%);
  197. padding: 0.8rem;
  198. }
  199. /* line 189, ../sass/_page.scss */
  200. #hyperlinksTab {
  201. background: rgba(0, 0, 0, 0.03);
  202. text-indent: 1em;
  203. }
  204. /* line 194, ../sass/_page.scss */
  205. #mainPage.mobile #fakeparserTab {
  206. display: none;
  207. }
  208. /* line 198, ../sass/_page.scss */
  209. #fakeparserTab {
  210. overflow: visible;
  211. background: rgba(0, 0, 0, 0.03);
  212. padding: 0.8rem;
  213. font-family: "Cousine";
  214. }
  215. /* line 204, ../sass/_page.scss */
  216. #fakeparserTab:before {
  217. content: ">";
  218. }
  219. /* line 209, ../sass/_page.scss */
  220. #currentCommand, #fakeParserThingy {
  221. font-weight: bold;
  222. }
  223. /* line 213, ../sass/_page.scss */
  224. #fakeParserThingy {
  225. animation: blinker 0.9s cubic-bezier(0.5, 0, 1, 1) infinite alternate;
  226. }
  227. @keyframes blinker {
  228. to {
  229. opacity: 0;
  230. }
  231. }
  232. /* line 219, ../sass/_page.scss */
  233. #rememberedRoomsTab, #mapTab {
  234. overflow-y: auto;
  235. background: linear-gradient(to bottom left, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.09) 50%, rgba(0, 0, 0, 0.06) 100%);
  236. padding: 0.8rem;
  237. }
  238. /* line 226, ../sass/_page.scss */
  239. #roomExitsHolder {
  240. background: linear-gradient(to top left, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.09) 50%, rgba(0, 0, 0, 0.06) 100%);
  241. padding: 2ex;
  242. padding-top: 0px;
  243. }
  244. /* line 233, ../sass/_page.scss */
  245. #exitsTab {
  246. overflow: hidden;
  247. background-color: rgba(0, 0, 0, 0.03);
  248. padding: 0.8rem;
  249. }
  250. /* line 1, ../sass/_modal.scss */
  251. #modalWindow {
  252. opacity: 0;
  253. pointer-events: none;
  254. z-index: 10;
  255. position: absolute;
  256. left: 0px;
  257. right: 0px;
  258. top: 0px;
  259. bottom: 0px;
  260. transition: opacity .3s ease-in-out;
  261. display: flex;
  262. align-items: center;
  263. justify-content: center;
  264. overflow: hidden;
  265. }
  266. /* line 17, ../sass/_modal.scss */
  267. *:not(#modalWindow) {
  268. transition: filter .3s ease-in-out;
  269. }
  270. /* line 22, ../sass/_modal.scss */
  271. body.modal > *:not(#modalWindow) {
  272. filter: blur(3px);
  273. }
  274. /* line 26, ../sass/_modal.scss */
  275. body.modal #modalWindow {
  276. opacity: 1;
  277. pointer-events: auto;
  278. }
  279. /* line 32, ../sass/_modal.scss */
  280. #modalContent {
  281. width: auto;
  282. height: auto;
  283. max-height: 85%;
  284. max-width: 85%;
  285. background: rgba(230, 240, 255, 0.4);
  286. border: 2px dashed transparent;
  287. box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.15);
  288. border-radius: 4px;
  289. overflow-x: hidden;
  290. overflow-y: auto;
  291. padding: 1.6rem;
  292. padding-top: 0px;
  293. }
  294. /* line 47, ../sass/_modal.scss */
  295. #leftWindow, #rightWindow, #currentRoomTab, #hyperlinksTab, #fakeparserTab, #statusLine {
  296. transition: filter .3s ease-in-out;
  297. }
  298. /* line 52, ../sass/_modal.scss */
  299. #mainPage.turn #leftWindow, #mainPage.turn #rightWindow, #mainPage.turn #currentRoomTab, #mainPage.turn #hyperlinksTab, #mainPage.turn #fakeparserTab, #mainPage.turn #statusLine {
  300. pointer-events: none;
  301. filter: blur(2px);
  302. }
  303. /* line 59, ../sass/_modal.scss */
  304. #mainPage.intro #leftWindow, #mainPage.intro #rightWindow, #mainPage.intro #statusLine {
  305. display: none;
  306. }
  307. /* line 63, ../sass/_modal.scss */
  308. #mainPage.intro #centerWindow {
  309. max-width: 100%;
  310. }
  311. /* line 68, ../sass/_modal.scss */
  312. #loadingScreen {
  313. position: absolute;
  314. left: 0px;
  315. top: 0px;
  316. bottom: 0px;
  317. right: 0px;
  318. background: linear-gradient(1deg, #FFF, #EEE);
  319. background-size: 400% 400%;
  320. z-index: 99999;
  321. }
  322. /* line 12, ../sass/_linktab.scss */
  323. .lineLink {
  324. line-height: 2em;
  325. padding-left: 0.35em;
  326. padding-right: 0.35em;
  327. }
  328. /* line 23, ../sass/_linktab.scss */
  329. .columnLink {
  330. line-height: 2em;
  331. padding-left: 0.35em;
  332. padding-right: 0.35em;
  333. }
  334. /* line 30, ../sass/_linktab.scss */
  335. #linkTarget {
  336. font-weight: bold;
  337. display: inline;
  338. line-height: 2em;
  339. margin-left: 2ex;
  340. }
  341. /* line 37, ../sass/_linktab.scss */
  342. #linkActions {
  343. display: inline;
  344. white-space: nowrap;
  345. }
  346. /* line 1, ../sass/_map.scss */
  347. .mapRow {
  348. padding: 0;
  349. margin: 0;
  350. list-style: none;
  351. display: flex;
  352. flex-flow: row;
  353. justify-content: center;
  354. margin-top: 1ex;
  355. z-index: 1;
  356. }
  357. /* line 12, ../sass/_map.scss */
  358. .mapRoom {
  359. z-index: 2;
  360. opacity: 0.5;
  361. max-width: 4.5ex;
  362. color: white;
  363. flex: 1 0 auto;
  364. margin-left: 1ex;
  365. height: auto;
  366. position: relative;
  367. }
  368. /* line 21, ../sass/_map.scss */
  369. .mapRoom:last-child {
  370. margin-right: 1ex;
  371. }
  372. /* line 26, ../sass/_map.scss */
  373. .mapRoom.linked:hover {
  374. opacity: 1;
  375. cursor: pointer;
  376. }
  377. /* line 31, ../sass/_map.scss */
  378. .mapRoom.current {
  379. opacity: 1;
  380. }
  381. /* line 33, ../sass/_map.scss */
  382. .mapRoom.current:hover {
  383. cursor: auto;
  384. }
  385. /* line 37, ../sass/_map.scss */
  386. .mapRoom.current::after {
  387. display: block;
  388. position: absolute;
  389. content: '';
  390. border: solid 2px #000;
  391. box-sizing: border-box;
  392. height: 100%;
  393. width: 100%;
  394. }
  395. /* line 55, ../sass/_map.scss */
  396. .mapRoom.unknown {
  397. opacity: 0;
  398. pointer-events: none;
  399. }
  400. /* line 60, ../sass/_map.scss */
  401. .mapRoom::before {
  402. content: '';
  403. float: left;
  404. padding-top: 100%;
  405. }
  406. /* line 67, ../sass/_map.scss */
  407. .mapRoomConnection, .mapRoomConnectionEast, .mapRoomConnectionWest, .mapRoomConnectionNorth, .mapRoomConnectionSouth {
  408. pointer-events: none;
  409. display: block;
  410. background-color: black;
  411. position: absolute;
  412. z-index: 3;
  413. }
  414. /* line 75, ../sass/_map.scss */
  415. .mapRoomConnectionEast {
  416. width: 1ex;
  417. height: 0.6ex;
  418. right: -1ex;
  419. top: 50%;
  420. margin-top: -0.3ex;
  421. }
  422. /* line 84, ../sass/_map.scss */
  423. .mapRoomConnectionWest {
  424. width: 1ex;
  425. height: 0.6ex;
  426. left: -1ex;
  427. top: 50%;
  428. margin-top: -0.3ex;
  429. }
  430. /* line 93, ../sass/_map.scss */
  431. .mapRoomConnectionNorth {
  432. width: 0.6ex;
  433. height: 1ex;
  434. left: 50%;
  435. top: -1ex;
  436. margin-left: -0.3ex;
  437. }
  438. /* line 102, ../sass/_map.scss */
  439. .mapRoomConnectionSouth {
  440. width: 0.6ex;
  441. height: 1ex;
  442. left: 50%;
  443. bottom: -1ex;
  444. margin-left: -0.3ex;
  445. }
  446. /* line 111, ../sass/_map.scss */
  447. .mapRoomName {
  448. display: none;
  449. position: absolute;
  450. text-align: center;
  451. bottom: 105%;
  452. right: 5%;
  453. padding: 5%;
  454. white-space: nowrap;
  455. margin: auto;
  456. background-color: white;
  457. color: #000;
  458. font-weight: bold;
  459. border: solid 2px #000;
  460. z-index: 4;
  461. pointer-events: none;
  462. }
  463. /* line 128, ../sass/_map.scss */
  464. .mapRoom.linked:hover > .mapRoomName {
  465. display: block;
  466. }
  467. /* line 132, ../sass/_map.scss */
  468. .tomato {
  469. background: tomato;
  470. }
  471. /* line 136, ../sass/_map.scss */
  472. .bloo {
  473. background: blue;
  474. }
  475. /* line 140, ../sass/_map.scss */
  476. .blocked {
  477. background-color: black;
  478. }
  479. /* line 143, ../sass/_map.scss */
  480. .blocked.unknown {
  481. opacity: 1;
  482. }
  483. /* line 1, ../sass/_hoverInfo.scss */
  484. #hoverInfo {
  485. z-index: 100;
  486. position: fixed;
  487. top: 10px;
  488. left: 10px;
  489. background-color: #fff;
  490. border: solid 2px #000;
  491. padding: 4px;
  492. font-weight: bold;
  493. pointer-events: none;
  494. max-width: 100%;
  495. display: none;
  496. box-sizing: border-box;
  497. }
  498. /* line 1, ../sass/_mainMenu.scss */
  499. #forceTurnToTop {
  500. display: none;
  501. }
  502. /* line 6, ../sass/_mainMenu.scss */
  503. #mainPage.mainmenu #statusLine, #mainPage.mainmenu #statusLine, #mainPage.mainmenu #rightWindow, #mainPage.mainmenu #currentRoomTab, #mainPage.mainmenu #fakeparserTab, #mainPage.mainmenu #hyperlinksTab, #mainPage.mainmenu #leftWindow {
  504. display: none;
  505. }
  506. /* line 10, ../sass/_mainMenu.scss */
  507. #mainPage.mainmenu #forceTurnToTop {
  508. display: block;
  509. }
  510. /* line 14, ../sass/_mainMenu.scss */
  511. #mainPage.mainmenu #centerWindow {
  512. max-width: 100%;
  513. }
  514. /* line 18, ../sass/_mainMenu.scss */
  515. #mainPage.mainmenu #currentTurnTab {
  516. padding-left: 15%;
  517. padding-right: 15%;
  518. padding-bottom: 2%;
  519. }
  520. /* line 24, ../sass/_mainMenu.scss */
  521. #mainPage.mainmenu.mobile #currentTurnTab {
  522. padding-left: 0%;
  523. padding-right: 0%;
  524. }
  525. /* line 30, ../sass/_mainMenu.scss */
  526. #mainPage.mainmenu p.choice {
  527. border: none;
  528. background: none;
  529. color: #000;
  530. font-weight: bold;
  531. text-align: center;
  532. padding: 0rem;
  533. margin: 0rem;
  534. margin-bottom: 0.1rem;
  535. margin-top: 0.1rem;
  536. }
  537. /* line 44, ../sass/_mainMenu.scss */
  538. #mainPage.mainmenu p.choice::before {
  539. color: #000;
  540. }
  541. /* line 47, ../sass/_mainMenu.scss */
  542. #mainPage.mainmenu p.choice::after {
  543. content: " ";
  544. color: #000;
  545. }
  546. /* line 53, ../sass/_mainMenu.scss */
  547. #mainPage.mainmenu p.choice:hover::before {
  548. content: "< ";
  549. color: #000;
  550. }
  551. /* line 57, ../sass/_mainMenu.scss */
  552. #mainPage.mainmenu p.choice:hover::after {
  553. content: " >";
  554. color: #000;
  555. }
  556. /* line 64, ../sass/_mainMenu.scss */
  557. #mainPage.mainmenu p.choice[data-shortcut]:hover::before {
  558. content: "< " attr(data-shortcut) ") ";
  559. color: #000;
  560. }
  561. /* line 68, ../sass/_mainMenu.scss */
  562. #mainPage.mainmenu p.choice[data-shortcut]:hover::after {
  563. content: " >";
  564. color: #000;
  565. }
  566. /* line 1, ../sass/_characterCreation.scss */
  567. #characterCreation {
  568. display: flex;
  569. flex-direction: row;
  570. flex-wrap: nowrap;
  571. justify-content: space-around;
  572. align-content: stretch;
  573. align-items: center;
  574. }
  575. /* line 10, ../sass/_characterCreation.scss */
  576. #ccLeft {
  577. flex: 0 1 auto;
  578. width: 50%;
  579. align-self: auto;
  580. }
  581. /* line 16, ../sass/_characterCreation.scss */
  582. #ccRight {
  583. flex: 0 1 auto;
  584. width: 50%;
  585. align-self: center;
  586. }
  587. /* line 22, ../sass/_characterCreation.scss */
  588. .ccOption {
  589. margin: auto;
  590. margin-bottom: 2.25ex;
  591. text-align: center;
  592. }
  593. /* line 28, ../sass/_characterCreation.scss */
  594. .ccRange {
  595. vertical-align: top;
  596. margin-left: 1.5ex;
  597. margin-right: 1.5ex;
  598. }
  599. /* line 36, ../sass/_characterCreation.scss */
  600. .ccButton[data-shortcut]:before {
  601. content: " (" attr(data-shortcut) ") " !important;
  602. }
  603. /* line 41, ../sass/_characterCreation.scss */
  604. .ccOptionTopLabel {
  605. text-align: center;
  606. font-weight: bold;
  607. margin-bottom: -0.25ex;
  608. }
  609. /* line 47, ../sass/_characterCreation.scss */
  610. .ccHeader {
  611. text-align: center;
  612. font-weight: bold;
  613. margin-top: 2ex;
  614. margin-bottom: 0.5ex;
  615. font-size: 1.1rem;
  616. }
  617. /* line 55, ../sass/_characterCreation.scss */
  618. .rangeValue {
  619. margin-top: -0.25ex;
  620. }
  621. /* line 1, ../sass/text/_links.scss */
  622. .textLink, .lineLink, .columnLink, .ccButton, .roomObject, .roomDirection, .rememberedRoomLink, .inventoryLink {
  623. font-weight: bold;
  624. color: #0000aa;
  625. }
  626. /* line 6, ../sass/text/_links.scss */
  627. .textLink:hover, .lineLink:hover, .columnLink:hover, .ccButton:hover, .roomObject:hover, .roomDirection:hover, .rememberedRoomLink:hover, .inventoryLink:hover {
  628. color: #0000ff;
  629. cursor: pointer;
  630. }
  631. /* line 9, ../sass/text/_links.scss */
  632. .textLink:hover:active, .lineLink:hover:active, .columnLink:hover:active, .ccButton:hover:active, .roomObject:hover:active, .roomDirection:hover:active, .rememberedRoomLink:hover:active, .inventoryLink:hover:active {
  633. color: #000099;
  634. }
  635. /* line 14, ../sass/text/_links.scss */
  636. .textLink[data-shortcut]:before, [data-shortcut].lineLink:before, [data-shortcut].columnLink:before, [data-shortcut].ccButton:before, [data-shortcut].roomObject:before, [data-shortcut].roomDirection:before, [data-shortcut].rememberedRoomLink:before, [data-shortcut].inventoryLink:before {
  637. content: attr(data-shortcut) ") ";
  638. }
  639. /* line 19, ../sass/text/_links.scss */
  640. .statusLink {
  641. font-weight: bold;
  642. color: #99f;
  643. }
  644. /* line 24, ../sass/text/_links.scss */
  645. .statusLink:hover {
  646. color: #ddf;
  647. cursor: pointer;
  648. }
  649. /* line 27, ../sass/text/_links.scss */
  650. .statusLink:hover:active {
  651. color: #66d;
  652. }
  653. /* line 1, ../sass/text/_room.scss */
  654. .roomName {
  655. font-size: 1.2rem;
  656. margin-bottom: 1ex;
  657. }
  658. /* line 7, ../sass/text/_room.scss */
  659. .roomDescription {
  660. text-indent: 1rem;
  661. text-align: justify;
  662. margin-top: 1ex;
  663. }
  664. /* line 13, ../sass/text/_room.scss */
  665. .roomExitsHeader {
  666. margin-top: 2ex;
  667. }
  668. /* line 18, ../sass/text/_room.scss */
  669. .roomExit {
  670. text-indent: 1.5rem;
  671. margin-top: 1ex;
  672. }
  673. /* line 27, ../sass/text/_room.scss */
  674. .rememberedRoomRow {
  675. display: flex;
  676. flex-direction: row;
  677. flex-wrap: nowrap;
  678. justify-content: space-between;
  679. align-content: stretch;
  680. align-items: stretch;
  681. }
  682. /* line 34, ../sass/text/_room.scss */
  683. .rememberedRoomRow:hover {
  684. background-color: rgba(0, 0, 0, 0.12);
  685. }
  686. /* line 39, ../sass/text/_room.scss */
  687. .rememberedRoomRow.currentRoom > .rememberedRoomLink {
  688. color: #000;
  689. display: none;
  690. }
  691. /* line 43, ../sass/text/_room.scss */
  692. .rememberedRoomRow.currentRoom > .rememberedRoomLink:hover {
  693. cursor: auto;
  694. }
  695. /* line 47, ../sass/text/_room.scss */
  696. .rememberedRoomRow.currentRoom > .rememberedRoomLink.name {
  697. display: initial;
  698. }
  699. /* line 54, ../sass/text/_room.scss */
  700. .rememberedRoomLink {
  701. white-space: nowrap;
  702. overflow: hidden;
  703. order: 2;
  704. flex: 0 0 auto;
  705. align-self: auto;
  706. padding: 0.6ex;
  707. padding-left: 1ex;
  708. padding-right: 1ex;
  709. }
  710. /* line 65, ../sass/text/_room.scss */
  711. .rememberedRoomLink.name {
  712. text-overflow: ellipsis;
  713. padding-left: 1.5ex;
  714. order: 1;
  715. flex: 1 1 auto;
  716. }
  717. /* line 71, ../sass/text/_room.scss */
  718. .rememberedRoomLink.name:hover {
  719. overflow: visible;
  720. white-space: initial;
  721. }
  722. /* line 1, ../sass/text/_say.scss */
  723. p.contentOld {
  724. color: #888;
  725. }
  726. /* line 4, ../sass/text/_say.scss */
  727. p.contentOld:hover {
  728. color: #000;
  729. }
  730. /* line 9, ../sass/text/_say.scss */
  731. p.contentOld, p.content {
  732. text-indent: 1rem;
  733. text-align: justify;
  734. padding: 0.5rem;
  735. padding-left: 1.6rem;
  736. padding-right: 1.6rem;
  737. }
  738. /* line 16, ../sass/text/_say.scss */
  739. p.contentOld.centered, p.content.centered {
  740. text-indent: 0px;
  741. text-align: center;
  742. }
  743. /* line 22, ../sass/text/_say.scss */
  744. .textIndenter {
  745. margin-right: 1rem;
  746. }
  747. /* line 26, ../sass/text/_say.scss */
  748. div.choiceContainer {
  749. padding-bottom: 0.8rem;
  750. }
  751. /* line 28, ../sass/text/_say.scss */
  752. div.choiceContainer:hover {
  753. background-color: rgba(10, 10, 80, 0.05);
  754. }
  755. /* line 33, ../sass/text/_say.scss */
  756. .roundButton, p.choice, .combatChoice {
  757. padding: 0.3rem;
  758. margin: 0.8rem;
  759. margin-bottom: 0.3rem;
  760. margin-top: 0.3rem;
  761. border: solid 1px #0000aa;
  762. border-radius: 1rem;
  763. background-color: #fff;
  764. }
  765. /* line 43, ../sass/text/_say.scss */
  766. .roundButton[data-shortcut]:before, p[data-shortcut].choice:before, [data-shortcut].combatChoice:before {
  767. content: attr(data-shortcut) ") ";
  768. font-weight: bold;
  769. color: #0000aa;
  770. }
  771. /* line 49, ../sass/text/_say.scss */
  772. .roundButton:hover, p.choice:hover, .combatChoice:hover {
  773. cursor: pointer;
  774. background-color: #eeeeff;
  775. border-color: #0000ff;
  776. }
  777. /* line 53, ../sass/text/_say.scss */
  778. .roundButton:hover[data-shortcut]:before, p.choice:hover[data-shortcut]:before, .combatChoice:hover[data-shortcut]:before {
  779. color: #0000ff;
  780. }
  781. /* line 58, ../sass/text/_say.scss */
  782. .roundButton:active, p.choice:active, .combatChoice:active {
  783. background-color: #c8c8ff;
  784. border-color: #000099;
  785. }
  786. /* line 61, ../sass/text/_say.scss */
  787. .roundButton:active[data-shortcut]:before, p.choice:active[data-shortcut]:before, .combatChoice:active[data-shortcut]:before {
  788. color: #000099;
  789. }
  790. /* line 67, ../sass/text/_say.scss */
  791. p.choice {
  792. text-indent: 0.5rem;
  793. text-align: justify;
  794. }
  795. /* line 71, ../sass/text/_say.scss */
  796. p.choice.picked {
  797. color: #888;
  798. }
  799. /* line 76, ../sass/text/_say.scss */
  800. .combatChoicesContainer {
  801. display: flex;
  802. flex-direction: row;
  803. flex-wrap: wrap;
  804. justify-content: center;
  805. align-content: stretch;
  806. align-items: stretch;
  807. }
  808. /* line 85, ../sass/text/_say.scss */
  809. .combatChoice {
  810. flex: 0 0 auto;
  811. align-self: auto;
  812. overflow: hidden;
  813. padding: 0.6em;
  814. margin: 0.3em;
  815. }
  816. /* line 94, ../sass/text/_say.scss */
  817. p.turnStart {
  818. display: flex;
  819. flex-basis: 100%;
  820. align-items: center;
  821. font-size: 0.8rem;
  822. font-weight: bold;
  823. line-height: 1em;
  824. }
  825. /* line 102, ../sass/text/_say.scss */
  826. p.turnStart::before {
  827. margin-right: 10px;
  828. }
  829. /* line 106, ../sass/text/_say.scss */
  830. p.turnStart::after {
  831. margin-left: 10px;
  832. }
  833. /* line 110, ../sass/text/_say.scss */
  834. p.turnStart::before, p.turnStart::after {
  835. content: "";
  836. flex-grow: 1;
  837. border-bottom: solid 1px rgba(180, 0, 0, 0.6);
  838. }
  839. /* line 117, ../sass/text/_say.scss */
  840. .horFlex {
  841. display: flex;
  842. flex-direction: row;
  843. flex-wrap: nowrap;
  844. justify-content: space-around;
  845. align-content: stretch;
  846. align-items: center;
  847. }
  848. /* line 126, ../sass/text/_say.scss */
  849. .horFlexColumn {
  850. flex: 0 1 auto;
  851. width: 50%;
  852. align-self: auto;
  853. }
  854. /* line 1, ../sass/text/_inventory.scss */
  855. .inventoryHeader {
  856. margin-top: 1em;
  857. margin-left: 1ex;
  858. }
  859. /* line 7, ../sass/text/_inventory.scss */
  860. .inventoryRow {
  861. display: flex;
  862. flex-direction: row;
  863. flex-wrap: nowrap;
  864. justify-content: space-between;
  865. align-content: stretch;
  866. align-items: stretch;
  867. }
  868. /* line 14, ../sass/text/_inventory.scss */
  869. .inventoryRow:hover {
  870. background-color: rgba(0, 0, 0, 0.12);
  871. }
  872. /* line 19, ../sass/text/_inventory.scss */
  873. .inventoryLink {
  874. white-space: nowrap;
  875. overflow: hidden;
  876. order: 2;
  877. flex: 0 0 auto;
  878. align-self: auto;
  879. padding: 0.6ex;
  880. padding-left: 1ex;
  881. padding-right: 1ex;
  882. }
  883. /* line 30, ../sass/text/_inventory.scss */
  884. .inventoryLink.name {
  885. text-overflow: ellipsis;
  886. padding-left: 1.5ex;
  887. order: 1;
  888. flex: 1 1 auto;
  889. }
  890. /* line 36, ../sass/text/_inventory.scss */
  891. .inventoryLink.name:hover {
  892. overflow: visible;
  893. white-space: initial;
  894. }
  895. /* line 42, ../sass/text/_inventory.scss */
  896. .inventoryGold {
  897. text-align: center;
  898. font-size: 1rem;
  899. font-weight: normal;
  900. padding-top: 1ex;
  901. }
  902. /* line 49, ../sass/text/_inventory.scss */
  903. #inventoryTarget {
  904. padding-bottom: 1ex;
  905. }
  906. /* line 5, ../sass/text/_appearance.scss */
  907. .appearanceDescription {
  908. padding: 0.5ex;
  909. text-align: justify;
  910. text-indent: 1em;
  911. line-height: 1.5em;
  912. }