styles.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888
  1. /*
  2. * Copyright (C) 2012 id Software LLC, a ZeniMax Media company.
  3. *
  4. * This file is part of the WOLF3D Browser Version GPL Source Code.
  5. *
  6. */
  7. html {
  8. padding : 0;
  9. background-color : black;
  10. }
  11. body {
  12. margin : 0;
  13. padding : 0;
  14. -webkit-touch-callout:none;
  15. -webkit-tap-highlight-color: rgba(0,0,0,0);
  16. -webkit-text-size-adjust: none;
  17. -webkit-user-select:none;
  18. -moz-user-select:none;
  19. -ms-user-select:none;
  20. user-select:none;
  21. width : 100%;
  22. height : 100%;
  23. }
  24. .load-progress {
  25. position : absolute;
  26. left : 0;
  27. bottom : 0;
  28. height : 5px;
  29. width : 0;
  30. background-color : #666;
  31. }
  32. #main {
  33. position : absolute;
  34. left : 0;
  35. top : 0;
  36. width : 640px;
  37. height : 400px;
  38. left : 50%;
  39. top : 50%;
  40. margin-left : -320px;
  41. margin-top : -200px;
  42. overflow : hidden;
  43. }
  44. #game, #menu, #title-screen {
  45. position : absolute;
  46. left : 0;
  47. top : 0;
  48. width : 100%;
  49. height : 100%;
  50. display : none;
  51. background-repeat : no-repeat;
  52. }
  53. #title-screen {
  54. background-image : url(art/title.png);
  55. display : block;
  56. }
  57. #game {
  58. background-color : rgb(0,56,56);
  59. background-image : url(art/gamebg.png);
  60. }
  61. #game .loading {
  62. background-color : rgb(0,56,56);
  63. display : none;
  64. position : absolute;
  65. left : 0;
  66. top : 0;
  67. width : 100%;
  68. height : 320px;
  69. z-index : 60;
  70. }
  71. #game .loading img {
  72. position : absolute;
  73. left : 50%;
  74. top : 50%;
  75. margin-left : -224px;
  76. margin-top : -48px;
  77. }
  78. #game .renderer {
  79. z-index : 50;
  80. background-color : #222;
  81. overflow : hidden;
  82. position : absolute;
  83. left : 16px;
  84. top : 8px;
  85. cursor : crosshair;
  86. }
  87. #game *,
  88. #game .renderer div,
  89. #game .renderer div img,
  90. #game .renderer .sprite,
  91. #game .renderer .sprite img {
  92. image-rendering : optimizeSpeed;
  93. image-rendering : -moz-crisp-edges;
  94. image-rendering : -o-crisp-edges;
  95. image-rendering : optimize-contrast;
  96. image-rendering : -webkit-optimize-contrast;
  97. -ms-interpolation-mode: nearest-neighbor;
  98. }
  99. #game .renderer .player-weapon {
  100. z-index : 100000000;
  101. width : 256px;
  102. height : 256px;
  103. position : absolute;
  104. bottom : 0;
  105. left : 50%;
  106. margin-left : -128px;
  107. background-image : url(art/attack.png);
  108. background-repeat : no-repeat;
  109. }
  110. #game .renderer .overlay {
  111. z-index : 200000000;
  112. width : 100%;
  113. height : 100%;
  114. position : absolute;
  115. top : 0;
  116. left : 0;
  117. display : none;
  118. }
  119. #game .renderer .damage-flash {
  120. background : rgba(255,0,0,0.25);
  121. }
  122. #game .renderer .bonus-flash {
  123. background : rgba(255,255,128,0.20);
  124. }
  125. #game .renderer .death {
  126. background : rgba(255,0,0,0);
  127. }
  128. #game .renderer .pause {
  129. background : rgba(32,32,32,0.5);
  130. }
  131. #game .renderer .pause img {
  132. position : absolute;
  133. left : 50%;
  134. top : 50%;
  135. margin-left : -64px;
  136. margin-top : -32px;
  137. }
  138. #game .ceiling, #game .floor {
  139. position : absolute;
  140. z-index : 0;
  141. left : 0;
  142. width : 100%;
  143. height : 50%;
  144. }
  145. #game .ceiling {
  146. top : 0;
  147. }
  148. #game .floor{
  149. top : 50%;
  150. }
  151. #game .hud {
  152. position : absolute;
  153. z-index : 100;
  154. bottom : 0;
  155. width : 640px;
  156. height : 80px;
  157. background-image : url(art/hudbg.png);
  158. }
  159. #game .hud .bj {
  160. position : absolute;
  161. width : 48px;
  162. height : 64px;
  163. left : 273px;
  164. top : 9px;
  165. overflow : hidden;
  166. background-image : url(art/bj.png);
  167. }
  168. #game .hud .key1,
  169. #game .hud .key2 {
  170. position : absolute;
  171. width : 16px;
  172. height : 32px;
  173. left : 480px;
  174. overflow : hidden;
  175. background-image : url(art/hudkeys.png);
  176. }
  177. #game .hud .key1 {
  178. top : 8px;
  179. }
  180. #game .hud .key2 {
  181. top : 40px;
  182. background-position : -16px 0;
  183. }
  184. #game .hud .weapon {
  185. position : absolute;
  186. width : 96px;
  187. height : 48px;
  188. left : 512px;
  189. top : 16px;
  190. overflow : hidden;
  191. background-image : url(art/hudweapons.png);
  192. }
  193. #game .hud .number-container {
  194. position : absolute;
  195. height : 32px;
  196. top : 32px;
  197. }
  198. #game .hud .floor {
  199. left : 48px;
  200. }
  201. #game .hud .score {
  202. left : 96px;
  203. }
  204. #game .hud .lives {
  205. left : 224px;
  206. }
  207. #game .hud .health {
  208. left : 336px;
  209. }
  210. #game .hud .ammo {
  211. left : 428px;
  212. }
  213. #game .hud .number {
  214. display : inline-block;
  215. width : 16px;
  216. height : 32px;
  217. overflow : hidden;
  218. margin : 0;
  219. background-image : url(art/hudnumbers.png);
  220. background-repeat : no-repeat;
  221. }
  222. #game .fps {
  223. position : absolute;
  224. display : none;
  225. z-index : 1000;
  226. left : 20px;
  227. top : 15px;
  228. font-family : courier new;
  229. font-size : 16px;
  230. width : 70px;
  231. height : 16px;
  232. background : rgba(0,0,0,0.3);
  233. color : rgb(200,200,200);
  234. padding : 5px;
  235. }
  236. #text-screen {
  237. background-color : #8a0000;
  238. position : absolute;
  239. height : 100%;
  240. width : 100%;
  241. left : 0;
  242. top : 0;
  243. z-index : 500;
  244. display : none;
  245. }
  246. #game .intermission,
  247. #game .gameover {
  248. position : absolute;
  249. height : 100%;
  250. width : 100%;
  251. left : 0;
  252. top : 0;
  253. background-color : #004141;
  254. display : none;
  255. }
  256. #game .gameover {
  257. background-image : url(art/intermission_gameover.png);
  258. }
  259. #game .intermission > div {
  260. position : absolute;
  261. }
  262. #game .intermission .background,
  263. #game .intermission .background-secret,
  264. #game .intermission .background-victory {
  265. position : absolute;
  266. background-image : url(art/intermission.png);
  267. height : 100%;
  268. width : 100%;
  269. left : 0;
  270. top : 0;
  271. z-index : 0;
  272. display : none;
  273. }
  274. #game .intermission .background-secret {
  275. background-image : url(art/intermission_secret.png);
  276. }
  277. #game .intermission .background-victory {
  278. background-image : url(art/intermission_victory.png);
  279. }
  280. #game .intermission .bj {
  281. left : 40px;
  282. top : 32px;
  283. width : 162px;
  284. height : 174px;
  285. background-image : url(art/intermissionbj.png);
  286. overflow : hidden;
  287. z-index : 10;
  288. }
  289. #game .intermission .stat,
  290. #game .intermission .victory-stat {
  291. z-index : 10;
  292. }
  293. #game .intermission .bonus {
  294. left : 412px;
  295. top : 108px;
  296. }
  297. #game .intermission .floor {
  298. left : 412px;
  299. top : 32px;
  300. }
  301. #game .intermission .total-time-minutes {
  302. top : 128px;
  303. left : 224px;
  304. }
  305. #game .intermission .total-time-seconds {
  306. top : 128px;
  307. left : 306px;
  308. }
  309. #game .intermission .time-minutes,
  310. #game .intermission .par-minutes {
  311. left : 412px;
  312. }
  313. #game .intermission .time-seconds,
  314. #game .intermission .par-seconds {
  315. left : 498px;
  316. }
  317. #game .intermission .time-minutes,
  318. #game .intermission .time-seconds {
  319. top : 152px;
  320. }
  321. #game .intermission .par-minutes,
  322. #game .intermission .par-seconds {
  323. top : 184px;
  324. }
  325. #game .intermission .kill-ratio,
  326. #game .intermission .secret-ratio,
  327. #game .intermission .treasure-ratio {
  328. left : 492px;
  329. }
  330. #game .intermission .kill-ratio {
  331. top : 224px;
  332. }
  333. #game .intermission .secret-ratio {
  334. top : 256px;
  335. }
  336. #game .intermission .treasure-ratio {
  337. top : 288px;
  338. }
  339. #game .intermission .avg-kill-ratio,
  340. #game .intermission .avg-secret-ratio,
  341. #game .intermission .avg-treasure-ratio {
  342. left : 384px;
  343. }
  344. #game .intermission .avg-kill-ratio {
  345. top : 224px;
  346. }
  347. #game .intermission .avg-secret-ratio {
  348. top : 256px;
  349. }
  350. #game .intermission .avg-treasure-ratio {
  351. top : 288px;
  352. }
  353. #game .intermission .digit {
  354. display : inline-block;
  355. width : 32px;
  356. height : 32px;
  357. background-image : url(art/intermissionfont.png);
  358. background-repeat : no-repeat;
  359. background-position : 32px 0px;
  360. }
  361. #game .intermission .num-0 {
  362. background-position : 0px 0px;
  363. }
  364. #game .intermission .num-1 {
  365. background-position : -32px 0px;
  366. }
  367. #game .intermission .num-2 {
  368. background-position : -64px 0px;
  369. }
  370. #game .intermission .num-3 {
  371. background-position : -96px 0px;
  372. }
  373. #game .intermission .num-4 {
  374. background-position : -128px 0px;
  375. }
  376. #game .intermission .num-5 {
  377. background-position : -160px 0px;
  378. }
  379. #game .intermission .num-6 {
  380. background-position : -192px 0px;
  381. }
  382. #game .intermission .num-7 {
  383. background-position : -224px 0px;
  384. }
  385. #game .intermission .num-8 {
  386. background-position : -256px 0px;
  387. }
  388. #game .intermission .num-9 {
  389. background-position : -288px 0px;
  390. }
  391. #menu div.menu {
  392. width : 100%;
  393. height : 100%;
  394. }
  395. #menu div.menu.main {
  396. background-image : url(art/menubg_main.png);
  397. }
  398. #menu div.menu.episodes {
  399. background-image : url(art/menubg_episodes.png);
  400. }
  401. #menu div.menu.levels {
  402. background-image : url(art/menubg_levels.png);
  403. }
  404. #menu div.menu.skill {
  405. background-image : url(art/menubg_skill.png);
  406. }
  407. #menu div.menu.sound {
  408. background-image : url(art/menubg_sound.png);
  409. }
  410. #menu div.menu.control {
  411. background-image : url(art/menubg_control.png);
  412. }
  413. #menu div.menu.customize {
  414. background-image : url(art/menubg_customize.png);
  415. }
  416. #menu ul {
  417. list-style : none;
  418. margin : 0;
  419. padding : 0;
  420. position : absolute;
  421. }
  422. #menu div.menu.main ul {
  423. left : 196px;
  424. top : 118px;
  425. width : 330px;
  426. height : 232px;
  427. }
  428. #menu div.menu.sound ul {
  429. left : 150px;
  430. top : 87px;
  431. width : 330px;
  432. height : 232px;
  433. }
  434. #menu div.menu.episodes ul {
  435. left : 44px;
  436. top : 100px;
  437. width : 550px;
  438. height : 240px;
  439. }
  440. #menu div.menu.skill ul {
  441. left : 144px;
  442. top : 186px;
  443. width : 384px;
  444. height : 128px;
  445. }
  446. #menu div.menu.levels ul {
  447. left : 90px;
  448. top : 110px;
  449. width : 256px;
  450. height : 240px;
  451. }
  452. #menu div.menu.control ul {
  453. left : 160px;
  454. top : 156px;
  455. width : 350px;
  456. height : 100px;
  457. }
  458. #menu div.menu.customize ul {
  459. left : 116px;
  460. top : 192px;
  461. width : 512px;
  462. height : 96px;
  463. }
  464. #menu ul.two-column{
  465. position : relative;
  466. float : left;
  467. width : 256px;
  468. }
  469. /* menu items */
  470. #menu ul li div.button {
  471. display : block;
  472. height : 24px;
  473. cursor : pointer;
  474. margin-bottom : 8px;
  475. background-image : url(art/menuitems.png);
  476. }
  477. #menu li.newgame div.button {
  478. background-position : 0 0;
  479. }
  480. #menu li.active.newgame div.button {
  481. background-position : -384px 0;
  482. }
  483. #menu li.sound div.button {
  484. background-position : 0 -32px;
  485. }
  486. #menu li.active.sound div.button {
  487. background-position : -384px -32px;
  488. }
  489. #menu li.control div.button {
  490. background-position : 0 -64px;
  491. }
  492. #menu li.active.control div.button {
  493. background-position : -384px -64px;
  494. }
  495. #menu li.readthis div.button {
  496. background-position : 0 -96px;
  497. }
  498. #menu li.active.readthis div.button {
  499. background-position : -384px -96px;
  500. }
  501. #menu li.resumegame div.button {
  502. background-position : 0 -128px;
  503. }
  504. #menu li.active.resumegame div.button {
  505. background-position : -384px -128px;
  506. }
  507. #menu li.baby div.button {
  508. background-position : 0 -160px;
  509. }
  510. #menu li.active.baby div.button {
  511. background-position : -384px -160px;
  512. }
  513. #menu li.easy div.button {
  514. background-position : 0 -192px;
  515. }
  516. #menu li.active.easy div.button {
  517. background-position : -384px -192px;
  518. }
  519. #menu li.medium div.button {
  520. background-position : 0 -224px;
  521. }
  522. #menu li.active.medium div.button {
  523. background-position : -384px -224px;
  524. }
  525. #menu li.hard div.button {
  526. background-position : 0 -256px;
  527. }
  528. #menu li.active.hard div.button {
  529. background-position : -384px -256px;
  530. }
  531. #menu li.sfxoff {
  532. margin-bottom : 58px;
  533. }
  534. #menu li.sfxon div.button,
  535. #menu li.musicon div.button,
  536. #menu li.sfxoff div.button,
  537. #menu li.musicoff div.button {
  538. margin-left : 48px;
  539. width : 256px;
  540. }
  541. #menu li.sfxon div.button,
  542. #menu li.musicon div.button {
  543. background-position : 0 -288px;
  544. }
  545. #menu li.active.sfxon div.button,
  546. #menu li.active.musicon div.button {
  547. background-position : -384px -288px;
  548. }
  549. #menu li.sfxoff div.button,
  550. #menu li.musicoff div.button {
  551. background-position : 0 -320px;
  552. }
  553. #menu li.active.sfxoff div.button,
  554. #menu li.active.musicoff div.button {
  555. background-position : -384px -320px;
  556. }
  557. #menu li.mouseenabled div.button {
  558. background-position : 0 -352px;
  559. }
  560. #menu li.active.mouseenabled div.button {
  561. background-position : -384px -352px;
  562. }
  563. #menu li.customize div.button {
  564. background-position : 0 -384px;
  565. }
  566. #menu li.active.customize div.button {
  567. background-position : -384px -384px;
  568. }
  569. #menu div.menu.episodes li div.button {
  570. height : 56px;
  571. width : 550px;
  572. background-image : url(art/menuitems_episodes.png);
  573. }
  574. #menu div.menu.episodes li.episode-0 div.button {
  575. background-position : 0 0;
  576. }
  577. #menu div.menu.episodes li.active.episode-0 div.button {
  578. background-position : 0 -56px;
  579. }
  580. #menu div.menu.episodes li.episode-1 div.button {
  581. background-position : 0 -112px;
  582. }
  583. #menu div.menu.episodes li.active.episode-1 div.button {
  584. background-position : 0 -168px;
  585. }
  586. #menu div.menu.episodes li.episode-2 div.button {
  587. background-position : 0 -224px;
  588. }
  589. #menu div.menu.episodes li.active.episode-2 div.button {
  590. background-position : 0 -280px;
  591. }
  592. #menu div.menu.levels li div.button {
  593. width : 256px;
  594. margin-bottom : 16px;
  595. background-image : url(art/menuitems_levels.png);
  596. }
  597. #menu li.level-0 div.button {
  598. background-position : 0 0;
  599. }
  600. #menu li.active.level-0 div.button {
  601. background-position : -256px 0;
  602. }
  603. #menu li.level-1 div.button {
  604. background-position : 0 -32px;
  605. }
  606. #menu li.active.level-1 div.button {
  607. background-position : -256px -32px;
  608. }
  609. #menu li.level-2 div.button {
  610. background-position : 0 -64px;
  611. }
  612. #menu li.active.level-2 div.button {
  613. background-position : -256px -64px;
  614. }
  615. #menu li.level-3 div.button {
  616. background-position : 0 -96px;
  617. }
  618. #menu li.active.level-3 div.button {
  619. background-position : -256px -96px;
  620. }
  621. #menu li.level-4 div.button {
  622. background-position : 0 -128px;
  623. }
  624. #menu li.active.level-4 div.button {
  625. background-position : -256px -128px;
  626. }
  627. #menu li.level-5 div.button {
  628. background-position : 0 -160px;
  629. }
  630. #menu li.active.level-5 div.button {
  631. background-position : -256px -160px;
  632. }
  633. #menu li.level-6 div.button {
  634. background-position : 0 -192px;
  635. }
  636. #menu li.active.level-6 div.button {
  637. background-position : -256px -192px;
  638. }
  639. #menu li.level-7 div.button {
  640. background-position : 0 -224px;
  641. }
  642. #menu li.active.level-7 div.button {
  643. background-position : -256px -224px;
  644. }
  645. #menu li.level-8 div.button{
  646. background-position : 0 -256px;
  647. }
  648. #menu li.active.level-8 div.button {
  649. background-position : -256px -256px;
  650. }
  651. #menu li.level-9 div.button {
  652. background-position : 0 -288px;
  653. }
  654. #menu li.active.level-9 div.button {
  655. background-position : -256px -288px;
  656. }
  657. /* menu toggle light */
  658. #menu div.light {
  659. width : 42px;
  660. height : 16px;
  661. margin-left : -48px;
  662. margin-top : 4px;
  663. overflow : hidden;
  664. display : inline-block;
  665. background-image : url(art/menulight.png);
  666. }
  667. #menu div.light.on {
  668. background-position : 0 24px;
  669. }
  670. /* menu selector gun */
  671. #menu ul.selector li.active::before {
  672. display : block;
  673. width : 46px;
  674. height : 24px;
  675. position : absolute;
  676. left : -50px;
  677. content : "";
  678. background-image : url(art/menuselector.png);
  679. }
  680. #menu div.menu.control ul.selector li.active::before {
  681. left : -100px;
  682. }
  683. /* customize keys menu */
  684. #menu div.menu.customize ul.selector li.active::before {
  685. left : -96px;
  686. }
  687. #menu div.menu.customize li div.button {
  688. margin-bottom : 28px;
  689. background : none;
  690. }
  691. #menu div.menu.customize li div.button span {
  692. position : relative;
  693. display : inline-block;
  694. width : 122px;
  695. height : 28px;
  696. background-image : url(art/control_keys.png);
  697. background-position : 0 -128px;
  698. margin-right : -6px;
  699. }
  700. #menu div.menu.customize li div.button span.k1 {
  701. }
  702. #menu div.menu.customize li div.button span.k2 {
  703. }
  704. #menu div.menu.customize li div.button span.k3 {
  705. }
  706. #menu div.menu.customize li div.button span.k4 {
  707. }
  708. #menu div.menu.customize li div.button span:hover {
  709. }
  710. /* skill menu face */
  711. #menu div.menu.skill div.face {
  712. width : 48px;
  713. height : 64px;
  714. left : 460px;
  715. top : 210px;
  716. position : absolute;
  717. background-image : url(art/skillfaces.png);
  718. }
  719. #menu div.menu.skill div.face.gd_baby {
  720. background-position : 0 0;
  721. }
  722. #menu div.menu.skill div.face.gd_easy {
  723. background-position : -48px 0;
  724. }
  725. #menu div.menu.skill div.face.gd_medium {
  726. background-position : -96px 0;
  727. }
  728. #menu div.menu.skill div.face.gd_hard {
  729. background-position : -144px 0;
  730. }
  731. /* menu confirm box */
  732. #menu .message {
  733. position : absolute;
  734. z-index : 1000;
  735. left : 0;
  736. top : 0;
  737. width : 100%;
  738. height : 100%;
  739. display : none;
  740. }
  741. #menu .message.confirm-newgame div.box {
  742. position : absolute;
  743. width : 460px;
  744. height : 100px;
  745. left : 50%;
  746. top : 50%;
  747. margin-left : -230px;
  748. margin-top : -50px;
  749. overflow : hidden;
  750. background-image : url(art/confirm_newgame.png);
  751. }
  752. #menu .message.confirm-newgame div.box.blink {
  753. background-position : 0 100px;
  754. }