handheld.css 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334
  1. /*
  2. ** MediaWiki 'monobook' style sheet for CSS2-capable browsers.
  3. ** Copyright Gabriel Wicke - http://wikidev.net/
  4. ** License: GPL (http://www.gnu.org/copyleft/gpl.html)
  5. **
  6. ** Loosely based on http://www.positioniseverything.net/ordered-floats.html by Big John
  7. ** and the Plone 2.0 styles, see http://plone.org/ (Alexander Limi,Joe Geldart & Tom Croucher,
  8. ** Michael Zeltner and Geir Bækholt)
  9. ** All you guys rock :)
  10. */
  11. /**
  12. * Stylesheet for handhelds. All rules not marked media-specific are shared
  13. * with main.css and should be updated in tandem. The rules can't be in the
  14. * same file because old browsers like IE5 won't obey @media rules.
  15. *
  16. * Rules that are handheld-specific are given @media rules in case old browsers
  17. * don't recognize the media attribute and load this file anyway.
  18. */
  19. #content {
  20. background: white;
  21. color: black;
  22. border: 1px solid #aaa;
  23. border-right: none;
  24. line-height: 1.5em;
  25. }
  26. /* the left column width is specified in class .portlet */
  27. /* Font size:
  28. ** We take advantage of keyword scaling- browsers won't go below 9px
  29. ** More at http://www.w3.org/2003/07/30-font-size
  30. ** http://style.cleverchimp.com/font_size_intervals/altintervals.html
  31. */
  32. body {
  33. font: x-small sans-serif;
  34. background: #f9f9f9 url(headbg.jpg) 0 0 no-repeat;
  35. color: black;
  36. margin: 0;
  37. padding: 0;
  38. }
  39. /* scale back up to a sane default */
  40. #globalWrapper {
  41. font-size: 127%;
  42. width: 100%;
  43. margin: 0;
  44. padding: 0;
  45. }
  46. .visualClear {
  47. clear: both;
  48. }
  49. /* general styles */
  50. table {
  51. font-size: 100%;
  52. color: black;
  53. /* we don't want the bottom borders of <h2>s to be visible through
  54. floated tables */
  55. background-color: white;
  56. }
  57. a {
  58. text-decoration: none;
  59. color: #002bb8;
  60. background: none;
  61. }
  62. a:visited {
  63. color: #5a3696;
  64. }
  65. a:active {
  66. color: #faa700;
  67. }
  68. a:hover {
  69. text-decoration: underline;
  70. }
  71. a.stub {
  72. color: #772233;
  73. }
  74. a.new, #p-personal a.new {
  75. color: #ba0000;
  76. }
  77. a.new:visited, #p-personal a.new:visited {
  78. color: #a55858;
  79. }
  80. img {
  81. border: none;
  82. vertical-align: middle;
  83. }
  84. p img {
  85. margin: 0;
  86. }
  87. hr {
  88. height: 1px;
  89. color: #aaa;
  90. background-color: #aaa;
  91. border: 0;
  92. margin: .2em 0 .2em 0;
  93. }
  94. h1, h2, h3, h4, h5, h6 {
  95. color: black;
  96. background: none;
  97. font-weight: normal;
  98. margin: 0;
  99. padding-top: .5em;
  100. padding-bottom: .17em;
  101. border-bottom: 1px solid #aaa;
  102. }
  103. h1 { font-size: 188%; }
  104. h1 .editsection { font-size: 53%; }
  105. h2 { font-size: 150%; }
  106. h2 .editsection { font-size: 67%; }
  107. h3, h4, h5, h6 {
  108. border-bottom: none;
  109. font-weight: bold;
  110. }
  111. h3 { font-size: 132%; }
  112. h3 .editsection { font-size: 76%; font-weight: normal; }
  113. h4 { font-size: 116%; }
  114. h4 .editsection { font-size: 86%; font-weight: normal; }
  115. h5 { font-size: 100%; }
  116. h5 .editsection { font-weight: normal; }
  117. h6 { font-size: 80%; }
  118. h6 .editsection { font-size: 125%; font-weight: normal; }
  119. .editsection {
  120. float: right;
  121. margin-left: 5px;
  122. }
  123. ul {
  124. line-height: 1.5em;
  125. list-style-type: square;
  126. margin: .3em 0 0 1.5em;
  127. padding: 0;
  128. list-style-image: url(bullet.gif);
  129. }
  130. ol {
  131. line-height: 1.5em;
  132. margin: .3em 0 0 3.2em;
  133. padding: 0;
  134. list-style-image: none;
  135. }
  136. li {
  137. margin-bottom: .1em;
  138. }
  139. dt {
  140. font-weight: bold;
  141. margin-bottom: .1em;
  142. }
  143. dl {
  144. margin-top: .2em;
  145. margin-bottom: .5em;
  146. }
  147. dd {
  148. line-height: 1.5em;
  149. margin-left: 2em;
  150. margin-bottom: .1em;
  151. }
  152. fieldset {
  153. border: 1px solid #2f6fab;
  154. margin: 1em 0 1em 0;
  155. padding: 0 1em 1em;
  156. line-height: 1.5em;
  157. }
  158. legend {
  159. padding: .5em;
  160. font-size: 95%;
  161. }
  162. form {
  163. border: none;
  164. margin: 0;
  165. }
  166. textarea {
  167. width: 100%;
  168. padding: .1em;
  169. }
  170. input.historysubmit {
  171. padding: 0 .3em .3em .3em !important;
  172. font-size: 94%;
  173. cursor: pointer;
  174. height: 1.7em !important;
  175. margin-left: 1.6em;
  176. }
  177. select {
  178. vertical-align: top;
  179. }
  180. abbr, acronym, .explain {
  181. border-bottom: 1px dotted black;
  182. color: black;
  183. background: none;
  184. cursor: help;
  185. }
  186. q {
  187. font-family: Times, "Times New Roman", serif;
  188. font-style: italic;
  189. }
  190. /* disabled for now
  191. blockquote {
  192. font-family: Times, "Times New Roman", serif;
  193. font-style: italic;
  194. }*/
  195. code {
  196. background-color: #f9f9f9;
  197. }
  198. pre {
  199. padding: 1em;
  200. border: 1px dashed #2f6fab;
  201. color: black;
  202. background-color: #f9f9f9;
  203. line-height: 1.1em;
  204. }
  205. /*
  206. ** the main content area
  207. */
  208. #contentSub, #contentSub2 {
  209. font-size: 84%;
  210. line-height: 1.2em;
  211. margin: 0 0 1.4em 1em;
  212. color: #7d7d7d;
  213. width: auto;
  214. }
  215. span.subpages {
  216. display: block;
  217. }
  218. /* Some space under the headers in the content area */
  219. #bodyContent h1, #bodyContent h2 {
  220. margin-bottom: .6em;
  221. }
  222. #bodyContent h3, #bodyContent h4, #bodyContent h5 {
  223. margin-bottom: .3em;
  224. }
  225. .firstHeading {
  226. margin-bottom: .1em;
  227. }
  228. /* user notification thing */
  229. .usermessage {
  230. background-color: #ffce7b;
  231. border: 1px solid #ffa500;
  232. color: black;
  233. font-weight: bold;
  234. margin: 2em 0 1em;
  235. padding: .5em 1em;
  236. vertical-align: middle;
  237. }
  238. #siteNotice {
  239. text-align: center;
  240. font-size: 95%;
  241. padding: 0 .9em;
  242. }
  243. #siteNotice p {
  244. margin: 0;
  245. padding: 0;
  246. }
  247. .error {
  248. color: red;
  249. font-size: larger;
  250. }
  251. .errorbox, .successbox {
  252. font-size: larger;
  253. border: 2px solid;
  254. padding: .5em 1em;
  255. float: left;
  256. margin-bottom: 2em;
  257. color: #000;
  258. }
  259. .errorbox {
  260. border-color: red;
  261. background-color: #fff2f2;
  262. }
  263. .successbox {
  264. border-color: green;
  265. background-color: #dfd;
  266. }
  267. .errorbox h2, .successbox h2 {
  268. font-size: 1em;
  269. font-weight: bold;
  270. display: inline;
  271. margin: 0 .5em 0 0;
  272. border: none;
  273. }
  274. #catlinks {
  275. border: 1px solid #aaa;
  276. background-color: #f9f9f9;
  277. padding: 5px;
  278. margin-top: 1em;
  279. clear: both;
  280. }
  281. /* currently unused, intended to be used by a metadata box
  282. in the bottom-right corner of the content area */
  283. .documentDescription {
  284. /* The summary text describing the document */
  285. font-weight: bold;
  286. display: block;
  287. margin: 1em 0;
  288. line-height: 1.5em;
  289. }
  290. .documentByLine {
  291. text-align: right;
  292. font-size: 90%;
  293. clear: both;
  294. font-weight: normal;
  295. color: #76797c;
  296. }
  297. /* emulate center */
  298. .center {
  299. width: 100%;
  300. text-align: center;
  301. }
  302. *.center * {
  303. margin-left: auto;
  304. margin-right: auto;
  305. }
  306. /* small for tables and similar */
  307. .small, .small * {
  308. font-size: 94%;
  309. }
  310. table.small {
  311. font-size: 100%;
  312. }
  313. /*
  314. ** content styles
  315. */
  316. #toc,
  317. .toc,
  318. .mw-warning {
  319. border: 1px solid #aaa;
  320. background-color: #f9f9f9;
  321. padding: 5px;
  322. font-size: 95%;
  323. }
  324. #toc h2,
  325. .toc h2 {
  326. display: inline;
  327. border: none;
  328. padding: 0;
  329. font-size: 100%;
  330. font-weight: bold;
  331. }
  332. #toc #toctitle,
  333. .toc #toctitle,
  334. #toc .toctitle,
  335. .toc .toctitle {
  336. text-align: center;
  337. }
  338. #toc ul,
  339. .toc ul {
  340. list-style-type: none;
  341. list-style-image: none;
  342. margin-left: 0;
  343. padding-left: 0;
  344. text-align: left;
  345. }
  346. #toc ul ul,
  347. .toc ul ul {
  348. margin: 0 0 0 2em;
  349. }
  350. #toc .toctoggle,
  351. .toc .toctoggle {
  352. font-size: 94%;
  353. }
  354. .mw-warning {
  355. margin-left: 50px;
  356. margin-right: 50px;
  357. text-align: center;
  358. }
  359. /* images */
  360. div.floatright, table.floatright {
  361. clear: right;
  362. float: right;
  363. position: relative;
  364. margin: 0 0 .5em .5em;
  365. border: 0;
  366. /*
  367. border: .5em solid white;
  368. border-width: .5em 0 .8em 1.4em;
  369. */
  370. }
  371. div.floatright p { font-style: italic; }
  372. div.floatleft, table.floatleft {
  373. float: left;
  374. clear: left;
  375. position: relative;
  376. margin: 0 .5em .5em 0;
  377. border: 0;
  378. /*
  379. margin: .3em .5em .5em 0;
  380. border: .5em solid white;
  381. border-width: .5em 1.4em .8em 0;
  382. */
  383. }
  384. div.floatleft p { font-style: italic; }
  385. /* thumbnails */
  386. div.thumb {
  387. margin-bottom: .5em;
  388. border-style: solid;
  389. border-color: white;
  390. width: auto;
  391. }
  392. div.thumbinner {
  393. border: 1px solid #ccc;
  394. padding: 3px !important;
  395. background-color: #f9f9f9;
  396. font-size: 94%;
  397. text-align: center;
  398. overflow: hidden;
  399. }
  400. html .thumbimage {
  401. border: 1px solid #ccc;
  402. }
  403. html .thumbcaption {
  404. border: none;
  405. text-align: left;
  406. line-height: 1.4em;
  407. padding: 3px !important;
  408. font-size: 94%;
  409. }
  410. div.magnify {
  411. float: right;
  412. border: none !important;
  413. background: none !important;
  414. }
  415. div.magnify a, div.magnify img {
  416. display: block;
  417. border: none !important;
  418. background: none !important;
  419. }
  420. div.tright {
  421. clear: right;
  422. float: right;
  423. border-width: .5em 0 .8em 1.4em;
  424. }
  425. div.tleft {
  426. float: left;
  427. clear: left;
  428. margin-right: .5em;
  429. border-width: .5em 1.4em .8em 0;
  430. }
  431. .hiddenStructure {
  432. display: none;
  433. speak: none;
  434. }
  435. img.tex {
  436. vertical-align: middle;
  437. }
  438. span.texhtml {
  439. font-family: serif;
  440. }
  441. /*
  442. ** classes for special content elements like town boxes
  443. ** intended to be referenced directly from the wiki src
  444. */
  445. /*
  446. ** User styles
  447. */
  448. /* table standards */
  449. table.rimage {
  450. float: right;
  451. position: relative;
  452. margin-left: 1em;
  453. margin-bottom: 1em;
  454. text-align: center;
  455. }
  456. .toccolours {
  457. border: 1px solid #aaa;
  458. background-color: #f9f9f9;
  459. padding: 5px;
  460. font-size: 95%;
  461. }
  462. div.townBox {
  463. position: relative;
  464. float: right;
  465. background: white;
  466. margin-left: 1em;
  467. border: 1px solid gray;
  468. padding: .3em;
  469. width: 200px;
  470. overflow: hidden;
  471. clear: right;
  472. }
  473. div.townBox dl {
  474. padding: 0;
  475. margin: 0 0 .3em;
  476. font-size: 96%;
  477. }
  478. div.townBox dl dt {
  479. background: none;
  480. margin: .4em 0 0;
  481. }
  482. div.townBox dl dd {
  483. margin: .1em 0 0 1.1em;
  484. background-color: #f3f3f3;
  485. }
  486. /*
  487. ** edit views etc
  488. */
  489. .special li {
  490. line-height: 1.4em;
  491. margin: 0;
  492. padding: 0;
  493. }
  494. /* Page history styling */
  495. /* the auto-generated edit comments */
  496. .autocomment {
  497. color: gray;
  498. }
  499. #pagehistory span.user {
  500. margin-left: 1.4em;
  501. margin-right: .4em;
  502. }
  503. #pagehistory span.minor {
  504. font-weight: bold;
  505. }
  506. #pagehistory li {
  507. border: 1px solid white;
  508. }
  509. #pagehistory li.selected {
  510. background-color: #f9f9f9;
  511. border: 1px dashed #aaa;
  512. }
  513. /*
  514. ** Diff rendering
  515. */
  516. table.diff, td.diff-otitle, td.diff-ntitle {
  517. background-color: white;
  518. }
  519. td.diff-addedline {
  520. background: #cfc;
  521. font-size: smaller;
  522. }
  523. td.diff-deletedline {
  524. background: #ffa;
  525. font-size: smaller;
  526. }
  527. td.diff-context {
  528. background: #eee;
  529. font-size: smaller;
  530. }
  531. .diffchange {
  532. color: red;
  533. font-weight: bold;
  534. }
  535. /*
  536. ** keep the whitespace in front of the ^=, hides rule from konqueror
  537. ** this is css3, the validator doesn't like it when validating as css2
  538. */
  539. #bodyContent a.external,
  540. #bodyContent a[href ^="gopher://"] {
  541. background: url(external.png) center right no-repeat;
  542. padding-right: 13px;
  543. }
  544. #bodyContent a[href ^="https://"],
  545. .link-https {
  546. background: url(lock_icon.gif) center right no-repeat;
  547. padding-right: 16px;
  548. }
  549. #bodyContent a[href ^="mailto:"],
  550. .link-mailto {
  551. background: url(mail_icon.gif) center right no-repeat;
  552. padding-right: 18px;
  553. }
  554. #bodyContent a[href ^="news://"] {
  555. background: url(news_icon.png) center right no-repeat;
  556. padding-right: 18px;
  557. }
  558. #bodyContent a[href ^="ftp://"],
  559. .link-ftp {
  560. background: url(file_icon.gif) center right no-repeat;
  561. padding-right: 18px;
  562. }
  563. #bodyContent a[href ^="irc://"],
  564. .link-irc {
  565. background: url(discussionitem_icon.gif) center right no-repeat;
  566. padding-right: 18px;
  567. }
  568. #bodyContent a.external[href $=".ogg"], #bodyContent a.external[href $=".OGG"],
  569. #bodyContent a.external[href $=".mid"], #bodyContent a.external[href $=".MID"],
  570. #bodyContent a.external[href $=".midi"], #bodyContent a.external[href $=".MIDI"],
  571. #bodyContent a.external[href $=".mp3"], #bodyContent a.external[href $=".MP3"],
  572. #bodyContent a.external[href $=".wav"], #bodyContent a.external[href $=".WAV"],
  573. #bodyContent a.external[href $=".wma"], #bodyContent a.external[href $=".WMA"],
  574. .link-audio {
  575. background: url("audio.png") center right no-repeat;
  576. padding-right: 13px;
  577. }
  578. #bodyContent a.external[href $=".ogm"], #bodyContent a.external[href $=".OGM"],
  579. #bodyContent a.external[href $=".avi"], #bodyContent a.external[href $=".AVI"],
  580. #bodyContent a.external[href $=".mpeg"], #bodyContent a.external[href $=".MPEG"],
  581. #bodyContent a.external[href $=".mpg"], #bodyContent a.external[href $=".MPG"],
  582. .link-video {
  583. background: url("video.png") center right no-repeat;
  584. padding-right: 13px;
  585. }
  586. #bodyContent a.external[href $=".pdf"], #bodyContent a.external[href $=".PDF"],
  587. #bodyContent a.external[href *=".pdf#"], #bodyContent a.external[href *=".PDF#"],
  588. #bodyContent a.external[href *=".pdf?"], #bodyContent a.external[href *=".PDF?"],
  589. .link-document {
  590. background: url("document.png") center right no-repeat;
  591. padding-right: 12px;
  592. }
  593. /* disable interwiki styling */
  594. #bodyContent a.extiw,
  595. #bodyContent a.extiw:active {
  596. color: #36b;
  597. background: none;
  598. padding: 0;
  599. }
  600. #bodyContent a.external {
  601. color: #36b;
  602. }
  603. /* this can be used in the content area to switch off
  604. special external link styling */
  605. #bodyContent .plainlinks a {
  606. background: none !important;
  607. padding: 0 !important;
  608. }
  609. /*
  610. ** Structural Elements
  611. */
  612. /*
  613. ** general portlet styles (elements in the quickbar)
  614. */
  615. .portlet {
  616. border: none;
  617. margin: 0 0 .5em;
  618. padding: 0;
  619. float: none;
  620. width: 11.6em;
  621. overflow: hidden;
  622. }
  623. .portlet h4 {
  624. font-size: 95%;
  625. font-weight: normal;
  626. white-space: nowrap;
  627. }
  628. .portlet h5 {
  629. background: transparent;
  630. padding: 0 1em 0 .5em;
  631. display: inline;
  632. height: 1em;
  633. text-transform: lowercase;
  634. font-size: 91%;
  635. font-weight: normal;
  636. white-space: nowrap;
  637. }
  638. .portlet h6 {
  639. background: #ffae2e;
  640. border: 1px solid #2f6fab;
  641. border-style: solid solid none solid;
  642. padding: 0 1em 0 1em;
  643. text-transform: lowercase;
  644. display: block;
  645. font-size: 1em;
  646. height: 1.2em;
  647. font-weight: normal;
  648. white-space: nowrap;
  649. }
  650. .pBody {
  651. font-size: 95%;
  652. background-color: white;
  653. color: black;
  654. border-collapse: collapse;
  655. border: 1px solid #aaa;
  656. padding: 0 .8em .3em .5em;
  657. }
  658. .portlet h1,
  659. .portlet h2,
  660. .portlet h3,
  661. .portlet h4 {
  662. margin: 0;
  663. padding: 0;
  664. }
  665. .portlet ul {
  666. line-height: 1.5em;
  667. list-style-type: square;
  668. list-style-image: url(bullet.gif);
  669. font-size: 95%;
  670. }
  671. .portlet li {
  672. padding: 0;
  673. margin: 0;
  674. }
  675. /*
  676. ** Logo properties
  677. */
  678. @media handheld {
  679. #p-logo { display: none }
  680. }
  681. /*
  682. ** the navigation portlet
  683. */
  684. #p-navigation .pBody {
  685. padding-right: 0;
  686. }
  687. #p-navigation li.active a, #p-navigation li.active a:hover {
  688. text-decoration: none;
  689. font-weight: bold;
  690. }
  691. /*
  692. ** Search portlet
  693. */
  694. input.searchButton {
  695. margin-top: 1px;
  696. font-size: 95%;
  697. }
  698. #searchGoButton {
  699. padding-left: .5em;
  700. padding-right: .5em;
  701. font-weight: bold;
  702. }
  703. #searchInput {
  704. width: 10.9em;
  705. margin: 0;
  706. font-size: 95%;
  707. }
  708. #p-search .pBody {
  709. padding: .5em .4em .4em .4em;
  710. text-align: center;
  711. }
  712. /*
  713. ** the personal toolbar
  714. */
  715. #p-personal ul {
  716. text-transform: lowercase;
  717. }
  718. #p-personal li.active {
  719. font-weight: bold;
  720. }
  721. /*
  722. ** the page-related actions- page/talk, edit etc
  723. */
  724. #p-cactions .hiddenStructure {
  725. display: none;
  726. }
  727. #p-cactions li a {
  728. text-transform: lowercase;
  729. }
  730. /* TODO: #t-iscite is only used by the Cite extension, come up with some
  731. * system which allows extensions to add to this file on the fly
  732. */
  733. #t-ispermalink, #t-iscite {
  734. color: #999;
  735. }
  736. /*
  737. ** footer
  738. */
  739. #footer {
  740. background-color: white;
  741. border-top: 1px solid #fabd23;
  742. border-bottom: 1px solid #fabd23;
  743. margin: .6em 0 1em 0;
  744. padding: .4em 0 1.2em 0;
  745. text-align: center;
  746. font-size: 90%;
  747. }
  748. #footer li {
  749. display: inline;
  750. margin: 0 1.3em;
  751. }
  752. /* hide from incapable browsers */
  753. head:first-child+body #footer li { white-space: nowrap; }
  754. #f-poweredbyico, #f-copyrightico {
  755. margin: 0 8px;
  756. position: relative;
  757. top: -2px; /* Bump it up just a tad */
  758. }
  759. #f-poweredbyico {
  760. float: right;
  761. height: 1%;
  762. }
  763. #f-copyrightico {
  764. float: left;
  765. height: 1%;
  766. }
  767. /* js pref toc */
  768. #preftoc {
  769. margin: 0;
  770. padding: 0;
  771. width: 100%;
  772. clear: both;
  773. }
  774. #preftoc li {
  775. background-color: #f0f0f0;
  776. color: #000;
  777. }
  778. #preftoc li.selected {
  779. font-weight: bold;
  780. background-color: #f9f9f9;
  781. border: 1px solid #aaa;
  782. border-bottom: none;
  783. cursor: default;
  784. top: 1px;
  785. padding-top: 2px;
  786. margin-right: -3px;
  787. }
  788. #preftoc > li.selected {
  789. top: 2px;
  790. }
  791. #preftoc a,
  792. #preftoc a:active {
  793. display: block;
  794. color: #000;
  795. padding: 0 .7em;
  796. position: relative;
  797. text-decoration: none;
  798. }
  799. #preftoc li.selected a {
  800. cursor: default;
  801. text-decoration: none;
  802. }
  803. #prefcontrol {
  804. padding-top: 2em;
  805. clear: both;
  806. }
  807. #preferences {
  808. margin: 0;
  809. border: 1px solid #aaa;
  810. clear: both;
  811. padding: 1.5em;
  812. background-color: #F9F9F9;
  813. }
  814. .prefsection {
  815. border: none;
  816. padding: 0;
  817. margin: 0;
  818. }
  819. .prefsection fieldset {
  820. border: 1px solid #aaa;
  821. float: left;
  822. margin-right: 2em;
  823. }
  824. .prefsection legend {
  825. font-weight: bold;
  826. }
  827. .prefsection table, .prefsection legend {
  828. background-color: #F9F9F9;
  829. }
  830. div.prefsectiontip {
  831. font-size: x-small;
  832. padding: .2em 2em;
  833. }
  834. .btnSavePrefs {
  835. font-weight: bold;
  836. padding-left: .3em;
  837. padding-right: .3em;
  838. }
  839. .preferences-login {
  840. clear: both;
  841. margin-bottom: 1.5em;
  842. }
  843. .prefcache {
  844. font-size: 90%;
  845. margin-top: 2em;
  846. }
  847. div#userloginForm form,
  848. div#userlogin form#userlogin2 {
  849. margin: 0 3em 1em 0;
  850. border: 1px solid #aaa;
  851. clear: both;
  852. padding: 1.5em 2em;
  853. background-color: #f9f9f9;
  854. float: left;
  855. }
  856. div#userloginForm table,
  857. div#userlogin form#userlogin2 table {
  858. background-color: #f9f9f9;
  859. }
  860. div#userloginForm h2,
  861. div#userlogin form#userlogin2 h2 {
  862. padding-top: 0;
  863. }
  864. div#userlogin .captcha {
  865. border: 1px solid #bbb;
  866. padding: 1.5em 2em;
  867. background-color: white;
  868. }
  869. #userloginprompt, #languagelinks {
  870. font-size: 85%;
  871. }
  872. #login-sectiontip {
  873. font-size: 85%;
  874. line-height: 1.2;
  875. padding-top: 2em;
  876. }
  877. #userlogin .loginText, #userlogin .loginPassword {
  878. width: 12em;
  879. }
  880. #userloginlink a, #wpLoginattempt, #wpCreateaccount {
  881. font-weight: bold;
  882. }
  883. /* more IE fixes */
  884. /* float/negative margin brokenness */
  885. * html #footer {margin-top: 0;}
  886. * html #column-content {
  887. display: inline;
  888. margin-bottom: 0;
  889. }
  890. * html div.editsection { font-size: smaller; }
  891. #pagehistory li.selected { position: relative; }
  892. /* Mac IE 5.0 fix; floated content turns invisible */
  893. * > html #column-content {
  894. float: none;
  895. }
  896. * > html #column-one {
  897. position: absolute;
  898. left: 0;
  899. top: 0;
  900. }
  901. * > html #footer {
  902. margin-left: 13.2em;
  903. }
  904. .redirectText {
  905. font-size: 150%;
  906. margin: 5px;
  907. }
  908. .printfooter {
  909. display: none;
  910. }
  911. .not-patrolled {
  912. background-color: #ffa;
  913. }
  914. div.patrollink {
  915. font-size: 75%;
  916. text-align: right;
  917. }
  918. span.newpage, span.minor, span.searchmatch, span.bot {
  919. font-weight: bold;
  920. }
  921. span.unpatrolled {
  922. font-weight: bold;
  923. color: red;
  924. }
  925. span.searchmatch {
  926. color: red;
  927. }
  928. .sharedUploadNotice {
  929. font-style: italic;
  930. }
  931. span.updatedmarker {
  932. color: black;
  933. background-color: #0f0;
  934. }
  935. table.gallery {
  936. border: 1px solid #ccc;
  937. margin: 2px;
  938. padding: 2px;
  939. background-color: white;
  940. }
  941. table.gallery tr {
  942. vertical-align: top;
  943. }
  944. table.gallery td {
  945. vertical-align: top;
  946. background-color: #f9f9f9;
  947. border: solid 2px white;
  948. }
  949. /* Keep this temporarily so that cached pages will display right */
  950. table.gallery td.galleryheader {
  951. text-align: center;
  952. font-weight: bold;
  953. }
  954. table.gallery caption {
  955. font-weight: bold;
  956. }
  957. div.gallerybox {
  958. margin: 2px;
  959. width: 150px;
  960. }
  961. div.gallerybox div.thumb {
  962. text-align: center;
  963. border: 1px solid #ccc;
  964. margin: 2px;
  965. }
  966. div.gallerytext {
  967. overflow: hidden;
  968. font-size: 94%;
  969. padding: 2px 4px;
  970. }
  971. span.comment {
  972. font-style: italic;
  973. }
  974. span.changedby {
  975. font-size: 95%;
  976. }
  977. .previewnote {
  978. text-indent: 3em;
  979. color: #c00;
  980. border-bottom: 1px solid #aaa;
  981. padding-bottom: 1em;
  982. margin-bottom: 1em;
  983. }
  984. .previewnote p {
  985. margin: 0;
  986. padding: 0;
  987. }
  988. .editExternally {
  989. border: 1px solid gray;
  990. background-color: #ffffff;
  991. padding: 3px;
  992. margin-top: 0.5em;
  993. float: left;
  994. font-size: small;
  995. text-align: center;
  996. }
  997. .editExternallyHelp {
  998. font-style: italic;
  999. color: gray;
  1000. }
  1001. li span.deleted, span.history-deleted {
  1002. text-decoration: line-through;
  1003. color: #888;
  1004. font-style: italic;
  1005. }
  1006. .toggle {
  1007. margin-left: 2em;
  1008. text-indent: -2em;
  1009. }
  1010. /* Classes for EXIF data display */
  1011. table.mw_metadata {
  1012. font-size: 0.8em;
  1013. margin-left: 0.5em;
  1014. margin-bottom: 0.5em;
  1015. width: 300px;
  1016. }
  1017. table.mw_metadata caption {
  1018. font-weight: bold;
  1019. }
  1020. table.mw_metadata th {
  1021. font-weight: normal;
  1022. }
  1023. table.mw_metadata td {
  1024. padding: 0.1em;
  1025. }
  1026. table.mw_metadata {
  1027. border: none;
  1028. border-collapse: collapse;
  1029. }
  1030. table.mw_metadata td, table.mw_metadata th {
  1031. text-align: center;
  1032. border: 1px solid #aaaaaa;
  1033. padding-left: 0.1em;
  1034. padding-right: 0.1em;
  1035. }
  1036. table.mw_metadata th {
  1037. background-color: #f9f9f9;
  1038. }
  1039. table.mw_metadata td {
  1040. background-color: #fcfcfc;
  1041. }
  1042. table.collapsed tr.collapsable {
  1043. display: none;
  1044. }
  1045. /* filetoc */
  1046. ul#filetoc {
  1047. text-align: center;
  1048. border: 1px solid #aaaaaa;
  1049. background-color: #f9f9f9;
  1050. padding: 5px;
  1051. font-size: 95%;
  1052. margin-bottom: 0.5em;
  1053. margin-left: 0;
  1054. margin-right: 0;
  1055. }
  1056. #filetoc li {
  1057. display: inline;
  1058. list-style-type: none;
  1059. padding-right: 2em;
  1060. }
  1061. input#wpSummary {
  1062. width: 80%;
  1063. }
  1064. /* @bug 1714 */
  1065. input#wpSave, input#wpDiff {
  1066. margin-right: 0.33em;
  1067. }
  1068. #editform .editOptions {
  1069. display: inline;
  1070. }
  1071. #wpSave {
  1072. font-weight: bold;
  1073. }
  1074. /* Classes for article validation */
  1075. table.revisionform_default {
  1076. border: 1px solid #000000;
  1077. }
  1078. table.revisionform_focus {
  1079. border: 1px solid #000000;
  1080. background-color:#00BBFF;
  1081. }
  1082. tr.revision_tr_default {
  1083. background-color:#EEEEEE;
  1084. }
  1085. tr.revision_tr_first {
  1086. background-color:#DDDDDD;
  1087. }
  1088. p.revision_saved {
  1089. color: green;
  1090. font-weight:bold;
  1091. }
  1092. #mw_trackbacks {
  1093. border: solid 1px #bbbbff;
  1094. background-color: #eeeeff;
  1095. padding: 0.2em;
  1096. }
  1097. /* Allmessages table */
  1098. #allmessagestable th {
  1099. background-color: #b2b2ff;
  1100. }
  1101. #allmessagestable tr.orig {
  1102. background-color: #ffe2e2;
  1103. }
  1104. #allmessagestable tr.new {
  1105. background-color: #e2ffe2;
  1106. }
  1107. #allmessagestable tr.def {
  1108. background-color: #f0f0ff;
  1109. }
  1110. /* noarticletext */
  1111. div.noarticletext {
  1112. border: 1px solid #ccc;
  1113. background: #fff;
  1114. padding: .2em 1em;
  1115. color: #000;
  1116. }
  1117. div#searchTargetContainer {
  1118. left: 10px;
  1119. top: 10px;
  1120. width: 90%;
  1121. background: white;
  1122. }
  1123. div#searchTarget {
  1124. padding: 3px;
  1125. margin: 5px;
  1126. background: #F0F0F0;
  1127. border: solid 1px blue;
  1128. }
  1129. div#searchTarget ul li {
  1130. list-style: none;
  1131. }
  1132. div#searchTarget ul li:before {
  1133. color: orange;
  1134. content: "\00BB \0020";
  1135. }
  1136. div.multipageimagenavbox {
  1137. border: solid 1px silver;
  1138. padding: 4px;
  1139. margin: 1em;
  1140. -moz-border-radius: 6px;
  1141. background: #f0f0f0;
  1142. }
  1143. div.multipageimagenavbox div.thumb {
  1144. border: none;
  1145. margin-left: 2em;
  1146. margin-right: 2em;
  1147. }
  1148. div.multipageimagenavbox hr {
  1149. margin: 6px;
  1150. }
  1151. table.multipageimage td {
  1152. text-align: center;
  1153. }
  1154. /** Special:Version */
  1155. table#sv-ext, table#sv-hooks {
  1156. margin: 1em;
  1157. padding:0em;
  1158. }
  1159. #sv-ext td, #sv-hooks td,
  1160. #sv-ext th, #sv-hooks th {
  1161. border: 1px solid #A0A0A0;
  1162. padding: 0 0.15em 0 0.15em;
  1163. }
  1164. #sv-ext th, #sv-hooks th {
  1165. background-color: #F0F0F0;
  1166. color: black;
  1167. padding: 0 0.15em 0 0.15em;
  1168. }
  1169. tr.sv-space{
  1170. height: 0.8em;
  1171. border:none;
  1172. }
  1173. tr.sv-space td { display: none; }
  1174. /*
  1175. Table pager (e.g. Special:Imagelist)
  1176. - remove underlines from the navigation link
  1177. - collapse borders
  1178. - set the borders to outsets (similar to Special:Allmessages)
  1179. - remove line wrapping for all td and th, set background color
  1180. - restore line wrapping for the last two table cells (description and size)
  1181. */
  1182. .TablePager_nav a { text-decoration: none; }
  1183. .TablePager { border-collapse: collapse; }
  1184. .TablePager, .TablePager td, .TablePager th {
  1185. border: 0.15em solid #777777;
  1186. padding: 0 0.15em 0 0.15em;
  1187. }
  1188. .TablePager th { background-color: #eeeeff }
  1189. .TablePager td { background-color: #ffffff }
  1190. .TablePager tr:hover td { background-color: #eeeeff }
  1191. .imagelist td, .imagelist th { white-space: nowrap }
  1192. .imagelist .TablePager_col_links { background-color: #eeeeff }
  1193. .imagelist .TablePager_col_img_description { white-space: normal }
  1194. .imagelist th.TablePager_sort { background-color: #ccccff }
  1195. .templatesUsed { margin-top: 1.5em; }
  1196. .mw-summary-preview {
  1197. margin: 0.1em 0;
  1198. }
  1199. @media handheld {
  1200. .nonessential {
  1201. /* Kill big bulky stuff that will clog up the screen */
  1202. display: none;
  1203. }
  1204. }
  1205. /**
  1206. * Here is some stuff that's ACTUALLY COMMON TO ALL SKINS.
  1207. * When the day comes, it can be moved to a *real* common.css.
  1208. */
  1209. .mw-plusminus-null { color: #aaa; }
  1210. .texvc { direction: ltr; unicode-bidi: embed; }
  1211. /* Stop floats from intruding into edit area in previews */
  1212. #toolbar, #wpTextbox1 { clear: both; }