css.css 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025
  1. /* Color Palette
  2. ----------------------------------------------------------------------------------------------------------------------
  3. Greys (lighter to darker)
  4. #eee : Unselected tabs
  5. #d5d5d5 : Background
  6. #555 : h3
  7. #222 : Body Text
  8. Reds
  9. #F7CBCA : Light Red (Message bar errors)
  10. #900 : Bright Red (h1, a)
  11. #700 : Darker Red (a:visited)
  12. */
  13. @media screen {
  14. body {
  15. background-color: #e6e6e6;
  16. color: #444;
  17. font:87.5%/1.42857143em "Lucida Grande", Verdana, sans-serif;
  18. margin:0;
  19. padding: 0 0 40px;
  20. }
  21. body {
  22. max-width:1060px;
  23. margin:auto;
  24. }
  25. body.library {
  26. max-width:1920px;
  27. margin:0;
  28. }
  29. h1 {
  30. line-height: 1.5em;
  31. }
  32. h2 {
  33. color: #666;
  34. }
  35. a:link {color: #38c;}
  36. a:visited {color: #38c;}
  37. a:hover {color: #369;}
  38. a:active {color: #333;}
  39. a img {border:none;}
  40. /* Navigation defaults */
  41. nav ul {
  42. list-style:none;
  43. padding:0;
  44. margin:0;
  45. }
  46. nav li {
  47. display:inline-block;
  48. }
  49. nav a {
  50. text-decoration:none;
  51. }
  52. /* Table defaults */
  53. table {
  54. border-collapse: collapse;
  55. border-spacing: 0;
  56. width:100%;
  57. }
  58. th,
  59. td {
  60. vertical-align:top;
  61. text-align:left;
  62. padding: 4px;
  63. }
  64. th {
  65. text-transform: capitalize;
  66. border-bottom: 1px dotted #ccc;
  67. }
  68. thead th {
  69. border-bottom: 2px solid #ccc;
  70. }
  71. td {
  72. border-bottom: 1px dotted #ccc;
  73. }
  74. td * {
  75. margin:0 0 1em;
  76. }
  77. tr:nth-child(2n) {
  78. background-color: rgba(0,0,0,0.05);
  79. }
  80. /* Definition list defaults */
  81. dt {
  82. font-weight:bold;
  83. }
  84. dd {
  85. margin-bottom:1em;
  86. margin-left:0;
  87. }
  88. /* -- Forms -- */
  89. form {
  90. margin-bottom: 1.6em;
  91. }
  92. fieldset {
  93. border:none;
  94. padding:0;
  95. margin:0;
  96. }
  97. legend {
  98. margin:0;
  99. padding:0 0 1em;
  100. text-indent:0;
  101. font-weight:bold;
  102. }
  103. form ol,
  104. form ul {
  105. list-style:none;
  106. margin-left:0;
  107. padding-left:0;
  108. }
  109. form li {
  110. margin-bottom:1em;
  111. }
  112. label,
  113. input,
  114. select {
  115. display:block;
  116. }
  117. input[type=text],
  118. input[type=password] {
  119. display:block;
  120. padding: 4px;
  121. border-radius: 4px;
  122. border:1px solid rgba(0,0,0,0.2);
  123. }
  124. label input[type=checkbox],
  125. label input[type=radio] {
  126. float:left;
  127. margin-left:0;
  128. }
  129. form .hint,
  130. #slugpreview,
  131. p.hint {
  132. font-size: 0.785714286em;
  133. color: rgba(0,0,0,0.6);
  134. margin:0;
  135. display:inline;
  136. }
  137. form textarea {
  138. display:block;
  139. }
  140. /**
  141. * Added because of iframe showing up on registration form, supposedly
  142. * because of the ReCaptcha field.
  143. */
  144. iframe[src="about:blank"]{
  145. display:none;
  146. }
  147. meter {
  148. width:100%;
  149. }
  150. /* -- Notifications -- */
  151. .messages {
  152. font-weight:bold; padding:18px 18px 3px 18px; text-align:center; margin:9px 0px;
  153. }
  154. .messages ul{
  155. list-style:none;
  156. }
  157. #confirm {background:#CBF7CA;}
  158. #notice {background:#F7F7CA;}
  159. #error {background:#F7CBCA;}
  160. ul#js-message-list {
  161. list-style:none;
  162. }
  163. li.jsNotificationMessage-confirm {
  164. background-color:#CBF7CA;
  165. }
  166. li.jsNotificationMessage-notice {
  167. background-color:#F7F7CA;
  168. }
  169. li.jsNotificationMessage-error {
  170. background-color:#F7CBCA;
  171. }
  172. /* -- Miscellaneous Classes -- */
  173. .container:after,
  174. form:after,
  175. .action-links:after,
  176. .nugget-user:after,
  177. .plugin_translation:after {
  178. content: ".";
  179. display: block;
  180. height: 0;
  181. clear: both;
  182. visibility: hidden;
  183. }
  184. .center {
  185. width: 85%;
  186. margin-left:auto;
  187. margin-right:auto;
  188. max-width: 1200px;
  189. }
  190. .library .center {
  191. max-width: none !important;
  192. }
  193. .clickable {
  194. cursor:pointer;
  195. }
  196. .deck {
  197. font-style:normal;
  198. font-weight:bold;
  199. font-size: 0.857142857em;
  200. color: #999;
  201. }
  202. .paginationControl {
  203. font-size: 0.857142857em;
  204. }
  205. .sticky-note ul {
  206. list-style:none;
  207. margin-left:0;
  208. padding-left:0;
  209. }
  210. .sticky-note li {
  211. margin-bottom:1em;
  212. }
  213. a#screencast-link {
  214. display:block;
  215. }
  216. #screencast-link img {
  217. max-width:100%;
  218. }
  219. input[type=submit],
  220. input[type=button],
  221. button,
  222. a.button,
  223. input.button {
  224. border-width: 1px;
  225. border-style:solid;
  226. -moz-border-radius: 4px;
  227. -webkit-border-radius: 4px;
  228. border-radius: 4px;
  229. background-image: -webkit-gradient(
  230. linear,
  231. 0% 0%,
  232. 0% 100%,
  233. color-stop(0, rgba(255, 255, 255, .05)),
  234. color-stop(0.5, rgba(255, 255, 255, .25)),
  235. color-stop(0.5001, rgba(255, 255, 255, 0)),
  236. color-stop(1, rgba(255, 255, 255, 0))
  237. );
  238. background-image: -webkit-linear-gradient(
  239. top,
  240. rgba(255,255,255,0.05),
  241. rgba(255,255,255,0.25) 50%,
  242. rgba(255,255,255,0) 50.01%,
  243. rgba(255,255,255,0)
  244. );
  245. background-image: -moz-linear-gradient(
  246. top,
  247. rgba(255,255,255,0.05),
  248. rgba(255,255,255,0.25) 50%,
  249. rgba(255,255,255,0) 50.01%,
  250. rgba(255,255,255,0)
  251. );
  252. background-image: -o-linear-gradient(
  253. top,
  254. rgba(255,255,255,0.05),
  255. rgba(255,255,255,0.25) 50%,
  256. rgba(255,255,255,0) 50.01%,
  257. rgba(255,255,255,0)
  258. );
  259. background-image: -ms-linear-gradient(
  260. top,
  261. rgba(255,255,255,0.05),
  262. rgba(255,255,255,0.25) 50%,
  263. rgba(255,255,255,0) 50.01%,
  264. rgba(255,255,255,0)
  265. );
  266. background-image: linear-gradient(
  267. top,
  268. rgba(255,255,255,0.05),
  269. rgba(255,255,255,0.25) 50%,
  270. rgba(255,255,255,0) 50.01%,
  271. rgba(255,255,255,0)
  272. );
  273. text-shadow:-1px -1px 1px rgba(0,0,0,0.2);
  274. text-align:center;
  275. color: #fff;
  276. font-weight:bold;
  277. background-color: #800;
  278. border-color: #800;
  279. border-radius: 4px;
  280. padding:4px 8px;
  281. text-decoration:none;
  282. }
  283. a.button:link,
  284. a.button:visited {
  285. color:#fff;
  286. }
  287. input[type=submit]:hover,
  288. button:hover,
  289. a.button:hover,
  290. input.button:hover {
  291. background-color: #900;
  292. border-color: #900;
  293. color: #fff;
  294. cursor:pointer;
  295. }
  296. input[type=submit]:active,
  297. button:active,
  298. a.button:active,
  299. input.button:active {
  300. background-color: #a00;
  301. border-color: #a00;
  302. color: #fff;
  303. }
  304. .button img {
  305. vertical-align:middle;
  306. }
  307. .action-links {
  308. margin-bottom:1.42857143em;
  309. }
  310. .action-links a {
  311. text-decoration:none;
  312. border-bottom: 1px dotted #aaa;
  313. padding-bottom: 3px;
  314. }
  315. .action-links li:not(:last-child):after {
  316. content: " · ";
  317. color: rgba(0,0,0,0.5);
  318. padding: 0 0.2em;
  319. }
  320. .action-links li.selected a {
  321. border-bottom: 2px solid #555;
  322. color: #555;
  323. }
  324. .feedlink {
  325. display:block;
  326. border:1px dotted #ccc;
  327. padding: 4px 0;
  328. }
  329. /* Nuggets!!!!!! */
  330. .nugget-full {
  331. margin-bottom: 1.42857143em;
  332. }
  333. .nugget-full img {
  334. float:left;
  335. }
  336. .nugget-full .nugget-name {
  337. font-size:1.42857143em;
  338. font-weight:bold;
  339. margin-bottom:0.5em;
  340. }
  341. .nugget-full .nugget-name a {
  342. text-decoration:none;
  343. }
  344. .nugget-full .nugget-name,
  345. .nugget-full .nugget-affiliation,
  346. .nugget-full .action-links,
  347. .nugget-full dl {
  348. }
  349. .nugget-small img {
  350. float:left;
  351. }
  352. .nugget-small .nugget-affiliation,
  353. .nugget-small .nugget-name {
  354. margin-left: 60px;
  355. }
  356. .nugget-small .nugget-affiliation {
  357. font-size: 0.785714286em;
  358. color: #999;
  359. }
  360. #group-library-link-nav a {
  361. font-weight:bold;
  362. }
  363. /* == Header == */
  364. header .center {
  365. padding-top: 20px;
  366. position:relative;
  367. }
  368. #logohead {
  369. float:left;
  370. clear:left;
  371. margin:0 0 0.3em;
  372. }
  373. #logohead {
  374. }
  375. #logohead img {
  376. max-width: 100%;
  377. }
  378. #purchase-storage-link,
  379. #login-links {
  380. float:right;
  381. text-align:right;
  382. clear:right;
  383. }
  384. #purchase-storage-link {
  385. background-color: #38c;
  386. border-color: #38c;
  387. color: #fff;
  388. text-decoration:none;
  389. border-radius: 6px;
  390. display:block;
  391. line-height: 2;
  392. font-size:0.857142857em;
  393. }
  394. #purchase-storage-link img {
  395. vertical-align:middle;
  396. width: 24px;
  397. padding-right: 6px;
  398. }
  399. #login-links {
  400. font-size:0.857142857em;
  401. margin-bottom:11px;
  402. }
  403. #login-links a {
  404. text-decoration:none;
  405. font-weight:bold;
  406. }
  407. #login-links a:not(:last-child):after {
  408. content: " · ";
  409. color: #999;
  410. text-decoration:none;
  411. padding: 0 2px;
  412. }
  413. #navbar {
  414. list-style:none;
  415. background: #333;
  416. padding:0 10px;
  417. font-size:0.857142857em;
  418. font-weight:bold;
  419. -moz-border-radius: 8px 8px 0 0;
  420. border-radius: 8px 8px 0 0;
  421. clear:both;
  422. }
  423. #sitenav {
  424. float:left;
  425. }
  426. #sitenav ul {
  427. margin:0;
  428. padding:0;
  429. word-spacing:0;
  430. line-height:3;
  431. }
  432. #sitenav li {
  433. display:inline-block;
  434. margin:0;
  435. }
  436. *:first-child+html #sitenav li {
  437. display:inline;
  438. }
  439. #sitenav a {
  440. -moz-border-radius: 8px 8px 0 0;
  441. border-radius: 8px 8px 0 0;
  442. padding: 15px 12px 12px;
  443. }
  444. #sitenav a:link,
  445. #sitenav a:visited {
  446. color: #eee;
  447. }
  448. #sitenav a:hover,
  449. #sitenav a:active {
  450. color: #fff;
  451. }
  452. #sitenav .selected a {
  453. background: #fff;
  454. color: #333;
  455. box-shadow:0 -1px 1px rgba(0,0,0,0.1);
  456. }
  457. #simple-search {
  458. float:right;
  459. text-align:right;
  460. clear:right;
  461. line-height: 3;
  462. margin:0;
  463. }
  464. #simple-search input {
  465. display:inline;
  466. margin:0;
  467. vertical-align:middle;
  468. }
  469. #simple-search .button {
  470. background-color: #aaa !important;
  471. border-color: #aaa !important;
  472. vertical-align:middle;
  473. }
  474. #simple-search input {
  475. font-size:0.95em;
  476. font: -webkit-small-control
  477. }
  478. #simple-search .clear-field-button {
  479. border: none;
  480. background: none !important;
  481. margin-left:-30px;
  482. position:relative;
  483. opacity:0.3;
  484. }
  485. #simple-search .clear-field-button:hover {
  486. border-color: #aaa !important;
  487. opacity:0.8;
  488. }
  489. /* == Content == */
  490. #content .center {
  491. background: #fff;
  492. padding: 16px 40px 0;
  493. -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.5);
  494. -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.5);
  495. box-shadow: 0 5px 10px rgba(0,0,0,0.5);
  496. -moz-border-radius: 10px 10px 0 0;
  497. -webkit-border-radius: 10px 10px 0 0;
  498. border-radius: 10px 10px 0 0;
  499. }
  500. .major-col {
  501. float:left;
  502. width: 66%;
  503. }
  504. .minor-col {
  505. float:right;
  506. width: 31%;
  507. }
  508. .single-col {
  509. float:left;
  510. }
  511. #breadcrumbs,
  512. .action-links {
  513. font-size:0.857142857em;
  514. }
  515. /* == Homepage, not logged in == */
  516. #zotero-banner {
  517. font-size:115%;
  518. float:left;
  519. width: 65%;
  520. margin-bottom: 40px;
  521. line-height: 150%;
  522. }
  523. #download {
  524. width: 31%;
  525. float:right;
  526. display:block;
  527. text-decoration:none;
  528. padding: 20px 0;
  529. font-size: 1.8em;
  530. font-weight:bold;
  531. color: #fff;
  532. border-radius: 10px;
  533. }
  534. #download:link,
  535. #download:visited {
  536. border-color: #a00;
  537. background-color: #a00;
  538. }
  539. #download:hover,
  540. #download:active {
  541. border-color: #c00;
  542. background-color: #c00;
  543. }
  544. #features {
  545. clear:both;
  546. padding: 40px;
  547. margin: 0 -40px;
  548. border: 5px solid rgba(255,255,255, 0.5);
  549. background:rgba(51,136,204,0.2);
  550. border-width: 5px 0 0;
  551. }
  552. #features h3 {
  553. font-size:1.5em;
  554. text-align:center;
  555. }
  556. #features-tabs {
  557. list-style:none;
  558. text-align:center;
  559. margin: 0 0 1em;
  560. padding:0;
  561. font-size:1.14285714em;
  562. font-weight:bold;
  563. }
  564. #features-tabs li {
  565. display:inline-block;
  566. margin:0;
  567. }
  568. #features-tabs a {
  569. text-decoration:none;
  570. padding: 14px;
  571. line-height: 40px;
  572. position:relative;
  573. vertical-align:middle;
  574. -moz-border-radius: 10px;
  575. -webkit-border-radius: 10px;
  576. border-radius: 10px;
  577. }
  578. *:first-child+html #features-tabs li {
  579. display:inline;
  580. }
  581. #features-tabs a:link,
  582. #features-tabs a:visited {
  583. color:rgba(51,136,204,0.8);
  584. background-color: transparent;
  585. }
  586. #features-tabs a:hover,
  587. #features-tabs a:active {
  588. background:rgba(51,136,204,0.1);
  589. }
  590. #features-tabs a.selected {
  591. background:rgba(51,136,204,0.2);
  592. }
  593. #features-tabs a img {
  594. vertical-align:middle;
  595. }
  596. #features-lists {
  597. max-width: 960px;
  598. margin-left:auto;
  599. margin-right:auto;
  600. }
  601. .feature h3 {
  602. font-weight:bold;
  603. margin-bottom:1em;
  604. }
  605. .feature img {
  606. background-color:rgba(0,0,0,0.1);
  607. padding: 5px;
  608. margin-bottom: 10px;
  609. float:left;
  610. margin-right: 10px;
  611. }
  612. #features-lists .feature:nth-child(2n) img {
  613. float:right;
  614. margin-left: 10px;
  615. margin-right:0;
  616. }
  617. #media {
  618. padding: 40px 0;
  619. }
  620. #media h2 {
  621. margin-top:0;
  622. }
  623. #media > div {
  624. float:left;
  625. width: 31%;
  626. margin-right: 3%;
  627. padding-bottom: 1em;
  628. }
  629. .news-list {
  630. list-style:none;
  631. margin:0;
  632. padding:0;
  633. }
  634. #connect ul {
  635. list-style:none;
  636. line-height: 2;
  637. margin:0;
  638. padding:0;
  639. }
  640. #connect li {
  641. margin-bottom:1em;
  642. }
  643. #connect a {
  644. text-decoration:none;
  645. font-weight:bold;
  646. }
  647. #connect a img {
  648. vertical-align:middle;
  649. margin-right: 8px;
  650. opacity: 0.75;
  651. width: 40px;
  652. height: 40px;
  653. }
  654. #connect a:hover img,
  655. #connect a:active img {
  656. opacity:1;
  657. }
  658. #get-involved {
  659. margin-right: 0 !important;
  660. }
  661. /* == Homepage, logged in == */
  662. #download-logged-in {
  663. float:right;
  664. display:block;
  665. margin-left: 5%;
  666. }
  667. #profile-widget .nugget-user {
  668. float:left;
  669. margin-right: 10px;
  670. }
  671. #profile-widget h1 {
  672. margin-bottom:0.25em;
  673. }
  674. .home-widget {
  675. background: rgba(0,0,0,0.035);
  676. -moz-border-radius: 10px;
  677. -webkit-border-radius:10px;
  678. border-radius: 10px;
  679. padding: 10px;
  680. margin-bottom: 2em;
  681. word-wrap: break-word;
  682. }
  683. #widgets-form,
  684. #news-feed-form {
  685. float:left;
  686. width: 48%;
  687. }
  688. #news-feed-form {
  689. float:right;
  690. }
  691. .home-widget form li {
  692. list-style:none;
  693. padding-left:0;
  694. }
  695. .home-widget table,
  696. .home-widget p,
  697. .home-widget ul,
  698. .home-widget ol,
  699. .home-widget meter {
  700. font-size: 0.857142857em;
  701. margin: 1.66666667em 0;
  702. }
  703. .home-widget table {
  704. margin: 1em 0;
  705. }
  706. .home-widget h2 {
  707. margin:-10px -10px 0;
  708. padding: 10px;
  709. background: rgba(0,0,0,0.05);
  710. -moz-border-radius: 10px 10px 0 0;
  711. -webkit-border-radius:10px 10px 0 0;
  712. border-radius: 10px 10px 0 0;
  713. font-size:1em;
  714. line-height:1em;
  715. }
  716. .home-widget-title .widget-title-text {
  717. vertical-align:middle;
  718. }
  719. h2 .ui-button {
  720. height: 1.4em !important;
  721. width: 1.4em !important;
  722. float:right;
  723. }
  724. .home-widget-edit {
  725. margin: 0 -10px !important;
  726. padding: 10px 10px 0;
  727. background: rgba(0,0,0,0.05);
  728. }
  729. .home-widget-edit .widget-actions {
  730. padding-bottom:1em;
  731. }
  732. .home-widget ul {
  733. list-style:none;
  734. padding-left:0;
  735. }
  736. .home-widget li {
  737. padding: 8px 0;
  738. border-bottom: 1px dotted rgba(0,0,0,0.1);
  739. }
  740. .home-widget li:last-child {
  741. border:none;
  742. }
  743. .home-widget li img {
  744. vertical-align:middle;
  745. margin-right: 4px;
  746. }
  747. /* == Standalone Start Page == */
  748. .download-section {
  749. /*background: rgba(51, 136, 204, 0.2);*/
  750. background-color: #e6e6e6;
  751. border-radius:10px;
  752. -moz-border-radius:10px;
  753. -webkit-border-radius:10px;
  754. padding:5px;
  755. margin-bottom:10px;
  756. }
  757. .download-section ul {
  758. list-style:none;
  759. }
  760. .download-section li {
  761. margin-bottom: 12px;
  762. }
  763. .download-link {
  764. display:block;
  765. width:250px;
  766. }
  767. /* == Zotero Plugins Page == */
  768. .plugin-section {
  769. /*width:100%;*/
  770. padding: 20px 5%;
  771. margin-bottom:1em;
  772. border-radius: 8px 8px 8px 8px;
  773. border: 1px solid #A8B8D1;
  774. box-shadow: 0 1px 3px rgba(58, 78, 103, 0.15) inset, 0 1px 0 rgba(255, 255, 255, 0.5);
  775. -moz-box-shadow: 0 1px 3px rgba(58, 78, 103, 0.15) inset, 0 1px 0 rgba(255, 255, 255, 0.5);
  776. -webkit-box-shadow: 0 1px 3px rgba(58, 78, 103, 0.15) inset, 0 1px 0 rgba(255, 255, 255, 0.5);
  777. }
  778. div.plugin-nugget {
  779. border-radius:10px;
  780. border:1px solid black;
  781. width:28%;
  782. padding:5px;
  783. margin:12px;
  784. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  785. -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  786. float:left;
  787. background-image:-moz-linear-gradient(#FFFFFF, #ECF1F7);
  788. background-image:-webkit-linear-gradient(#FFFFFF, #ECF1F7);
  789. }
  790. .plugin-author {
  791. }
  792. .plugin-description {
  793. }
  794. /* == User Pages == */
  795. #profile-picture {
  796. float:left;
  797. width: 50px;
  798. margin-right: 8px;
  799. }
  800. #profile-picture img {
  801. max-width: 100%;
  802. }
  803. /* == User CV == */
  804. div.csl-entry {
  805. margin-bottom:1em;
  806. }
  807. /* == User Library == */
  808. #library .minor-col{
  809. float:left;
  810. }
  811. #library .major-col{
  812. float:right;
  813. }
  814. #collection-list-div ul {
  815. list-style:none;
  816. margin:0;
  817. padding:0;
  818. }
  819. #collection-list-div ul ul {
  820. margin-left: 1em;
  821. }
  822. #library-items-div th {
  823. border-bottom: 2px solid rgba(0,0,0,0.2);
  824. text-align: center;
  825. }
  826. #library-items-div th:not(:last-child) {
  827. border-right:1px dotted rgba(0,0,0,0.2);
  828. }
  829. #library-items-div td * {
  830. margin-bottom: 0;
  831. }
  832. .sprite-icon {
  833. float: left;
  834. margin-right: 5px;
  835. }
  836. .item-select-link {
  837. position: relative;
  838. }
  839. .item-select-link span.sprite-icon {
  840. /*position: absolute;*/
  841. top: 0;
  842. left: 0;
  843. margin-right:8px;
  844. }
  845. span.localized-date-span {
  846. white-space: nowrap;
  847. display: inline-block;
  848. }
  849. #items-pane td[data-itemkey]:not(.edit-checkbox-td) {
  850. cursor: pointer;
  851. max-width: 50%;
  852. word-wrap:break-word;
  853. }
  854. #control-panel-container {
  855. padding-bottom:1em;
  856. /* clear:both;*/
  857. }
  858. #control-panel form{
  859. margin-bottom:0;
  860. }
  861. #move-item-links-buttonset {
  862. margin-left:1em;
  863. margin-right:3em;
  864. }
  865. .ui-selectmenu-status {
  866. font-size:0.9em;
  867. }
  868. .remove-from-collection-link .ui-button-text {
  869. font-size:0.9em;
  870. padding-top:0.1em !important;
  871. padding-bottom:0.1em !important;
  872. }
  873. .creator-input-div {
  874. margin:0;
  875. line-height:1.4em;
  876. }
  877. .creator-input-div input {
  878. float:left;
  879. }
  880. .creator-input-div span.creator-separator {
  881. float:left;
  882. margin-top:.42857143em;
  883. margin-right: 4px;
  884. }
  885. .itemDetailForm input {
  886. margin-right:2px;
  887. }
  888. td.creator * {
  889. margin:0 2px .25em;
  890. }
  891. .edit-tag-div {
  892. margin:0;
  893. line-height:1.4em;
  894. }
  895. .edit-tag-div input {
  896. float:left;
  897. }
  898. .edit-tag-div span {
  899. float:left;
  900. }
  901. .taginput{
  902. clear:left;
  903. }
  904. td.tags * {
  905. margin:0 2px .25em;
  906. }
  907. #library-settings-div {
  908. }
  909. #item-pagination-div li{
  910. display:inline-block;
  911. }
  912. #item-pagintation-div a.paginator{
  913. display:inline-block;
  914. }
  915. /*
  916. #item-pagination-div li:not(:last-child):after{
  917. content: " · ";
  918. }
  919. */
  920. /* == Item Details == */
  921. ul#notes-and-attachments {
  922. list-style:none;
  923. }
  924. ul#notes-and-attachments li {
  925. margin-top: 5px;
  926. }
  927. /* == Login page == */
  928. #login fieldset {
  929. display:block;
  930. float: left;
  931. width: 48%;
  932. }
  933. #login fieldset:not(:last-child) {
  934. margin-right: 4%;
  935. }
  936. /* == Registration page == */
  937. #register #form-description {
  938. float:right;
  939. width: 48%;
  940. }
  941. #register form {
  942. margin-right: 52%;
  943. }
  944. #register input[type=text] {
  945. width: 50%;
  946. min-width: 200px;
  947. }
  948. /* == Library styles == */
  949. ul.item-pagination {
  950. padding-left:0;
  951. margin-left:0;
  952. }
  953. #notes-and-attachments .item-select-link {
  954. padding:0;
  955. display:inline;
  956. position:inherit;
  957. }
  958. #tag-filter-input,
  959. #show-all-tags-label {
  960. margin-bottom:1em;
  961. display:block;
  962. }
  963. #show-all-tags-label input[type="checkbox"] {
  964. float:none !important;
  965. display:inline !important;
  966. }
  967. #tags-list,
  968. #selected-tags-list {
  969. list-style:none;
  970. margin:1em 0;
  971. padding-left:0;
  972. font-weight:normal;
  973. /*font-size: 0.857142857em;*/
  974. font-size: 0.8em;
  975. }
  976. #tags-list a,
  977. #selected-tags-list a {
  978. /*display:block;*/
  979. text-decoration:none;
  980. /*border-bottom: 1px dotted #ccc;*/
  981. padding: 5px;
  982. color: #16B;
  983. border:1px solid #ccc;
  984. border-radius:10px;
  985. margin:5px 0px 5px 2px;
  986. }
  987. #tags-list li,
  988. #selected-tags-list li {
  989. display:list-item;
  990. float:left;
  991. margin-bottom:8px;
  992. }
  993. /*
  994. #tags-list a span,
  995. #selected-tags-list a span {
  996. float:right;
  997. text-align:right;
  998. }
  999. */
  1000. #tags-list a:hover,
  1001. #tags-list a:active {
  1002. background-color: rgba(51,136,204,0.2);
  1003. }
  1004. #selected-tags-list a:link,
  1005. #selected-tags-list a:visited {
  1006. background-color: #fff09e;
  1007. color: #444;
  1008. }
  1009. #selected-tags-list a:hover,
  1010. #selected-tags-list a:active {
  1011. background-color: #fff09e;
  1012. color: #900;
  1013. }
  1014. label[for='show-all-tags']{
  1015. font-size: 0.8em;
  1016. }
  1017. #tag-filter-input {
  1018. margin-bottom:25px;
  1019. }
  1020. #more-tags-links {
  1021. clear: both;
  1022. }
  1023. #tag-lists-container {
  1024. /* overflow:scroll;
  1025. max-height:300px;
  1026. */
  1027. }
  1028. td.tags ul {
  1029. list-style:none;
  1030. padding:0;
  1031. margin:0;
  1032. }
  1033. td.tags li {
  1034. display:inline-block;
  1035. }
  1036. td.tags a {
  1037. text-decoration:none;
  1038. border-bottom: 1px dotted #aaa;
  1039. }
  1040. td.tags li:not(:last-child):after {
  1041. content: " · ";
  1042. color: rgba(0,0,0,0.5);
  1043. }
  1044. #collection-list-container {
  1045. clear: both;
  1046. }
  1047. #collection-edit-div {
  1048. padding-bottom:1em;
  1049. /* clear:both;*/
  1050. }
  1051. #collection-list {
  1052. list-style:none;
  1053. margin-left:0;
  1054. padding-left:0;
  1055. font-weight:normal;
  1056. font-size: 0.857142857em;
  1057. }
  1058. #collection-list a {
  1059. display:block;
  1060. text-decoration:none;
  1061. border-bottom: 1px dotted #ccc;
  1062. padding: 5px;
  1063. color: #16B;
  1064. }
  1065. #collection-list a:hover,
  1066. #collection-list a:active {
  1067. background-color: rgba(51,136,204,0.2);
  1068. }
  1069. #collection-list a.current-collection {
  1070. /*text-decoration: underline;*/
  1071. font-weight: bold;
  1072. background-color: rgba(51,136,204,0.2);
  1073. }
  1074. #collection-list span{
  1075. margin-top:6px;
  1076. }
  1077. #library-items-div table {
  1078. margin-left:0;
  1079. padding-left:0;
  1080. font-size: 0.857142857em;
  1081. }
  1082. #library-items-div a {
  1083. /*display:block;*/
  1084. text-decoration:none;
  1085. }
  1086. /*
  1087. #library-items-div a:hover,
  1088. #library-items-div a:active {
  1089. background-color: rgba(51,136,204,0.2);
  1090. }
  1091. */
  1092. #library-items-div tbody tr:hover {
  1093. background-color: rgba(51,136,204,0.2);
  1094. }
  1095. #library-items-div th.clickable:hover {
  1096. background-color: rgba(51,136,204,0.2);
  1097. }
  1098. #library-items-div div.no-results-message {
  1099. text-align:center;
  1100. margin-top:1em;
  1101. }
  1102. /*item details*/
  1103. .itemDetailForm td > input[type=text] {
  1104. width:80%;
  1105. }
  1106. /* == Settings styles == */
  1107. /* == People page == */
  1108. #user-follow-list {
  1109. list-style:none;
  1110. padding-left:0;
  1111. }
  1112. .people-tiny-nuggets .nugget-user {
  1113. float:left;
  1114. margin-right: 5px;
  1115. }
  1116. .people-tiny-nuggets {
  1117. clear:both;
  1118. }
  1119. .minor-col h2 {
  1120. clear:both;
  1121. }
  1122. #people-discipline ul {
  1123. list-style:none;
  1124. margin-left:0;
  1125. padding-left:0;
  1126. font-weight:bold;
  1127. font-size: 0.857142857em;
  1128. float:left;
  1129. width: 48%;
  1130. }
  1131. #people-discipline ul.last {
  1132. float:right;
  1133. }
  1134. #people-discipline a {
  1135. display:block;
  1136. text-decoration:none;
  1137. border-bottom: 1px dotted #ccc;
  1138. padding: 5px;
  1139. }
  1140. #people-discipline a:hover,
  1141. #people-discipline a:active {
  1142. background-color: rgba(51,136,204,0.2);
  1143. }
  1144. .people-in-disciplines {
  1145. list-style:none;
  1146. margin-left:0;
  1147. padding-left:0;
  1148. }
  1149. .people-in-disciplines li {
  1150. padding: 0 0 9px;
  1151. border-bottom: 1px dotted #ccc;
  1152. margin-bottom:10px;
  1153. }
  1154. .people-in-disciplines li:last-child {
  1155. border:none;
  1156. margin-bottom:0;
  1157. }
  1158. /* == Groups pages == */
  1159. ul#groups {
  1160. list-style:none;
  1161. margin-left:0;
  1162. padding-left:0;
  1163. }
  1164. ul#groups > li {
  1165. margin-bottom: 1.42857143em;
  1166. }
  1167. ul#groups th {
  1168. width: 25%;
  1169. }
  1170. ul#group-invitations {
  1171. list-style:none;
  1172. }
  1173. /* New Group Form */
  1174. .group-select {
  1175. border-radius: 10px;
  1176. width:27%;
  1177. float:left;
  1178. margin-right: 3%;
  1179. padding: 2%;
  1180. background-color: rgba(0,0,0,0.05);
  1181. }
  1182. .group-select:last-child {
  1183. margin-right:0;
  1184. }
  1185. .group-select h2 {
  1186. font-size:1em;
  1187. color: #333;
  1188. margin: 0 0 1em;
  1189. }
  1190. .group-select p,
  1191. .group-select label {
  1192. font-size: 0.857142857em;
  1193. }
  1194. .group-select input,
  1195. .group-select label {
  1196. display:inline;
  1197. font-weight:bold;
  1198. }
  1199. /* Messages Page */
  1200. #contact-section { padding-top:100px}
  1201. #contact-list { width:150px }
  1202. #inbox-spinner {display:none}
  1203. .message-row {font-weight:bold;}
  1204. .message-body { background-color:#FFF; padding:10px; display:none;}
  1205. .read-message { background-color:#EAEAEA; font-weight:normal}
  1206. .group-message-body {margin-left:5px; margin-top:10px; margin-bottom:10px; border-top:1px solid #ccc; border-bottom:1px solid #ccc; overflow:auto}
  1207. .author-link {margin-right:30px; font-weight:bold}
  1208. /* Admin Dashboard */
  1209. .admin-message-type-emerg {background-color:#3000ff;}
  1210. .admin-message-type-alert {background-color:#9300ae;}
  1211. .admin-message-type-crit {background-color:#d90042;}
  1212. .admin-message-type-err {background-color:#ff1009;}
  1213. .admin-message-type-warn {background-color:#fbd438;}
  1214. .admin-message-type-notice {background-color:#84de40;}
  1215. .admin-message-type-info {background-color:#79d6aa;}
  1216. .admin-message-type-debug {background-color:#c0ecd8;}
  1217. .admin-quicklink {width:100%; padding:5px; display:block; color:#FFF !important; text-align:center; font-size:14px; font-weight:bold;}
  1218. .admin-message { padding:5px; position:relative; min-height:7px; margin-bottom:3px; }
  1219. .admin-message-date { position:absolute; top:6px; right:15px; overflow:none; width:125px; text-align:right;}
  1220. .admin-message-title { overflow:hidden; white-space:nowrap; width:435px; font-weight:bold; margin-bottom:2px; cursor: pointer;}
  1221. .admin-message-body { background-color:#FFF; padding:10px; display:none;}
  1222. .admin-trace {overflow: auto; white-space:nowrap; }
  1223. .admin-value { font-family: monospace;}
  1224. .admin-message-body tr {border-bottom:1px solid #eee;}
  1225. .admin-message-body th { width:175px; }
  1226. .admin-message-body th, .admin-message-body td { border:0px; padding:0px;}
  1227. .admin-noresults {text-align:center; padding:100px;}
  1228. .admin-search-form {margin:18px 0px;}
  1229. .admin-pagination { text-align:center; position:relative; width:100%; margin:9px 0px;}
  1230. .admin-pagination-next {position:absolute; right:0px; bottom:0px;}
  1231. .admin-pagination-prev {position:absolute; left:0px; bottom:0px;}
  1232. /* Admin User Storage */
  1233. .checkout-notification {border:1px solid #ccc; margin-top:7px; background-color:#ddd}
  1234. .Role_2 {background-color:#fcc}
  1235. /* == Support styles == */
  1236. #support .major-col {
  1237. float:right;
  1238. }
  1239. #support .minor-col {
  1240. float:left;
  1241. }
  1242. .dokuwiki .major-col {
  1243. width: 70%;
  1244. }
  1245. body.dokuwiki {
  1246. max-width:1920px;
  1247. }
  1248. body div.dokuwiki div.major-col {
  1249. font-size:0.9em;
  1250. }
  1251. .dokuwiki .minor-col {
  1252. width: 25%;
  1253. }
  1254. .bchead {display:none;}
  1255. .dokuwiki div.plugin_translation {
  1256. float:none !important;
  1257. padding:0 !important;
  1258. margin-bottom:1em;
  1259. }
  1260. .plugin_translation span {
  1261. font-weight:bold;
  1262. }
  1263. .dokuwiki .bar .no {
  1264. border-bottom: 1px dotted #ccc;
  1265. padding: 10px 0;
  1266. display:block;
  1267. }
  1268. .dokuwiki .bar .button {
  1269. background-image: none;
  1270. background-color: transparent;
  1271. border: none;
  1272. text-shadow: none;
  1273. color: #900;
  1274. padding: 0;
  1275. margin: 0;
  1276. font-size: 1em;
  1277. border-radius: 0;
  1278. float:none;
  1279. }
  1280. .support-menu-section {
  1281. background-color: #eee;
  1282. border: 1px solid rgba(0,0,0,0.1);
  1283. border-width: 0 1px 1px;
  1284. padding: 10px;
  1285. }
  1286. #support-menu h2 {
  1287. font-size:0.857142857em;
  1288. margin:0;
  1289. border-bottom:none;
  1290. }
  1291. #support-menu ul {
  1292. font-size:0.857142857em;
  1293. padding-left:1.25em;
  1294. }
  1295. #support-menu h2:hover {
  1296. color: #38c;
  1297. cursor:pointer;
  1298. }
  1299. .support-menu-section:first-child {
  1300. border-radius: 10px 10px 0 0;
  1301. border-width: 1px;
  1302. }
  1303. .support-menu-section:last-child {
  1304. border-radius: 0 0 10px 10px;
  1305. }
  1306. .dokuwiki div.toc {
  1307. float:right;
  1308. border:1px solid #ccc;
  1309. padding: 10px;
  1310. margin-left: 10px;
  1311. margin-bottom:10px;
  1312. font-size:0.857142857em;
  1313. width: 20%;
  1314. border-radius:10px;
  1315. -moz-border-radius:10px;
  1316. -webkit-border-radius:10px;
  1317. background: #fff;
  1318. }
  1319. .dokuwiki div.toc ul {
  1320. padding-left:0.5em;
  1321. }
  1322. .dokuwiki .page-info,
  1323. .dokuwiki .user-info {
  1324. font-size:0.857142857em;
  1325. color: #999;
  1326. margin: 1em 0;
  1327. }
  1328. .dokuwiki div.plugin_translation {
  1329. margin-top:1em;
  1330. border: 1px dotted #ccc;
  1331. border-width: 1px 0;
  1332. padding: 1em 0 !important;
  1333. }
  1334. .dokuwiki .page h1 {
  1335. border-bottom: 1px dotted #ccc;
  1336. padding-bottom: 0.5em;
  1337. }
  1338. .dokuwiki div.plugin_translation span,
  1339. .dokuwiki div.plugin_translation ul {
  1340. display:block;
  1341. margin:0;
  1342. padding:0;
  1343. float:left;
  1344. }
  1345. .dokuwiki div.plugin_translation li {
  1346. float:none;
  1347. display:inline;
  1348. }
  1349. .dokuwiki div.plugin_translation ul li a.wikilink2:link,
  1350. .dokuwiki div.plugin_translation ul li a.wikilink2:hover,
  1351. .dokuwiki div.plugin_translation ul li a.wikilink2:active,
  1352. .dokuwiki div.plugin_translation ul li a.wikilink2:visited {
  1353. background: #fff;
  1354. color:#999 !important;
  1355. border-bottom: 1px dotted #ccc;
  1356. }
  1357. .dokuwiki div.plugin_translation ul li a.wikilink1:link,
  1358. .dokuwiki div.plugin_translation ul li a.wikilink1:hover,
  1359. .dokuwiki div.plugin_translation ul li a.wikilink1:active,
  1360. .dokuwiki div.plugin_translation ul li a.wikilink1:visited {
  1361. background-color: #ddd;
  1362. color: #333 !important;
  1363. border-bottom:none;
  1364. }
  1365. div.dokuwiki .media img.medialeft {
  1366. border:1px dotted #ccc;
  1367. padding: 4px;
  1368. }
  1369. div.dokuwiki div.secedit {
  1370. margin-bottom: 1em;
  1371. }
  1372. div.dokuwiki div.secedit input.button {
  1373. padding: 4px 8px;
  1374. }
  1375. .dokuwiki .centeralign {
  1376. text-align:left;
  1377. }
  1378. .dokuwiki div.li input {float:left !important; display:inline !important}
  1379. /* indent different sections */
  1380. div.dokuwiki div.level1 {margin-left: 3px;}
  1381. div.dokuwiki div.level2 {margin-left: 13px;}
  1382. /* margin-left modified by Dan S. */
  1383. div.dokuwiki div.level3 {margin-left: 13px;}
  1384. div.dokuwiki div.level4 {margin-left: 13px;}
  1385. div.dokuwiki div.level5 {margin-left: 13px;}
  1386. div.dokuwiki ul ul {
  1387. padding-left:20px;
  1388. }
  1389. div.dokuwiki form.btn_source div.no input[value="Show pagesource"]{
  1390. display:none;
  1391. }
  1392. /*
  1393. .dokuwiki .page h2,
  1394. .dokuwiki .page .level2 {
  1395. margin-left: 0em;
  1396. }
  1397. .dokuwiki .page h3,
  1398. .dokuwiki .page .level3 {
  1399. margin-left: 1em;
  1400. }
  1401. */
  1402. /* == Forums styles == */
  1403. #SearchPage input, #PostPage input, #CommentsPage input {
  1404. display:inline-block;
  1405. }
  1406. /*
  1407. #SearchPage input[type=button],
  1408. #SearchPage input[type=submit],
  1409. #PostPage input[type=button],
  1410. #PostPage input[type=submit],
  1411. #CommentsPage input[type=button],
  1412. #CommentsPage input[type=submit] { border-color:#555;
  1413. border-color:#555;
  1414. background-color: #DDD;
  1415. }*/
  1416. #Panel {
  1417. margin-right:25px;
  1418. }
  1419. /*
  1420. #Session {
  1421. margin-bottom:1em;
  1422. }
  1423. #Categories,
  1424. #Categories ul,
  1425. #Comments,
  1426. #Discussions,
  1427. #Discussions ul {
  1428. list-style:none;
  1429. padding-left:0;
  1430. margin-left:0;
  1431. }
  1432. .Category,
  1433. .Comment,
  1434. .Discussion {
  1435. padding:1em;
  1436. }
  1437. .Category:not(:last-child),
  1438. .Comment:not(:last-child),
  1439. .Discussion:not(:last-child) {
  1440. border-bottom:1px solid #ccc;
  1441. }
  1442. .CategoryOptions,
  1443. .CategoryName span,
  1444. .CategoryDescription span,
  1445. .CommentHeader span,
  1446. .DiscussionTopic span,
  1447. .DiscussionType {display:none;}
  1448. .CategoryDescription,
  1449. .DiscussionDescription,
  1450. .DiscussionComments {
  1451. font-size:0.857142857em;
  1452. color: #777;
  1453. }
  1454. .CategoryName,
  1455. .DiscussionTopic {
  1456. font-size:1.14285714em;
  1457. font-weight:bold;
  1458. }
  1459. .Discussion .DiscussionCategory {
  1460. display:none;
  1461. }
  1462. .DiscussionComments {
  1463. margin-bottom:1em;
  1464. }
  1465. .UnRead,
  1466. .NewComments {
  1467. background-color: rgba(51,136,204,0.1);
  1468. }
  1469. .DiscussionStarted,
  1470. .DiscussionLastComment,
  1471. .DiscussionActive {
  1472. display:inline;
  1473. font-size: 0.857142857em;
  1474. }
  1475. .DiscussionStarted:after,
  1476. .DiscussionLastComment:after {
  1477. content: " · ";
  1478. padding: 0 4px;
  1479. color: #999;
  1480. }
  1481. .PageInfo {
  1482. border: 2px solid #ddd;
  1483. border-width: 2px 0 1px;
  1484. line-height:2;
  1485. vertical-align:middle;
  1486. }
  1487. .PageInfo p {
  1488. float:right;
  1489. width: 25%;
  1490. text-align:right;
  1491. font-size: 0.857142857em;
  1492. color: #999;
  1493. font-weight:bold;
  1494. margin:0;
  1495. line-height:2;
  1496. }
  1497. .PageListEmpty {
  1498. display:none;
  1499. }
  1500. .PageList {
  1501. font-size: 0.857142857em;
  1502. list-style:none;
  1503. margin:0;
  1504. padding:0;
  1505. float:left;
  1506. width: 70%;
  1507. color: #999;
  1508. font-weight:bold;
  1509. line-height:2;
  1510. }
  1511. .PageList li {
  1512. display:inline;
  1513. margin: 0 4px;
  1514. }
  1515. .PageList a {
  1516. }
  1517. #Comments {
  1518. border-top: 1px solid #ddd;
  1519. margin-top:0;
  1520. }
  1521. .CommentHeader ul {
  1522. list-style:none;
  1523. padding-left:0;
  1524. margin-left:0;
  1525. padding-bottom:1em;
  1526. }
  1527. .CommentHeader li {
  1528. display:inline;
  1529. font-size: 1em;
  1530. font-weight:bold;
  1531. vertical-align:middle;
  1532. }
  1533. .CommentHeader a {
  1534. text-decoration:none;
  1535. }
  1536. .CommentHeader li.comment-time {
  1537. color: #999;
  1538. font-weight:normal;
  1539. }
  1540. .CommentHeader li.comment-time:before {
  1541. content: " · ";
  1542. color: #ccc;
  1543. }
  1544. .Comment blockquote {
  1545. color: #999;
  1546. font-style:italic;
  1547. }
  1548. */
  1549. /* == Footer == */
  1550. footer .center {
  1551. background: #555;
  1552. padding: 40px;
  1553. box-shadow: 0 5px 10px rgba(0,0,0,0.5);
  1554. color: #fff;
  1555. border-top: 5px solid #777;
  1556. }
  1557. footer p,
  1558. footer ul {
  1559. color: #ccc;
  1560. color: rgba(255,255,255,0.5);
  1561. font-size:0.857142857em;
  1562. }
  1563. footer a:link,
  1564. footer a:visited {
  1565. color: #ccc;
  1566. color: rgba(255,255,255, 0.5);
  1567. }
  1568. footer a:hover,
  1569. footer a:active {
  1570. color: #ddd;
  1571. color: rgba(255,255,255, 0.75);
  1572. }
  1573. #chnm-logo {
  1574. float:right;
  1575. }
  1576. footer nav,
  1577. footer p {
  1578. float:left;
  1579. clear:left;
  1580. width: 60%;
  1581. }
  1582. footer nav a {
  1583. font-weight:bold;
  1584. }
  1585. /*
  1586. footer nav li {
  1587. padding: 0 0.2em;
  1588. }*/
  1589. footer nav li:not(:last-child):after {
  1590. content: " · ";
  1591. color: rgba(255,255,255,0.25);
  1592. }
  1593. .left {
  1594. float:left;
  1595. }
  1596. .right {
  1597. float:right;
  1598. }
  1599. .spinner {
  1600. display:block;
  1601. clear:both;
  1602. margin-left:auto;
  1603. margin-right:auto;
  1604. margin-top:3em;
  1605. margin-bottom:2em;
  1606. }
  1607. /* == IE7 Hacks == */
  1608. *:first-child+html .container,
  1609. *:first-child+html form,
  1610. *:first-child+html .action-links {
  1611. min-height:1px;
  1612. }
  1613. *:first-child+html nav a {
  1614. display:inline;
  1615. }
  1616. }
  1617. @media screen and (max-width: 920px) {
  1618. body {
  1619. background-image:none;
  1620. }
  1621. #sitenav ul {
  1622. }
  1623. #sitenav a {
  1624. padding: 15px 10px;
  1625. }
  1626. }
  1627. @media screen and (max-width: 1040px) {
  1628. body {
  1629. background-image:none;
  1630. min-width: 840px;
  1631. }
  1632. header {
  1633. margin-left:10px;
  1634. margin-right: 10px;
  1635. }
  1636. .center {
  1637. width: auto !important;
  1638. margin-left:0;
  1639. margin-right:0;
  1640. -moz-border-radius: 0 !important;
  1641. -webkit-border-radius: 0 !important;
  1642. border-radius:0 !important;
  1643. min-width:0 !important;
  1644. }
  1645. }
  1646. @media screen and (max-width: 480px) {
  1647. #minor-panel {
  1648. display:none;
  1649. }
  1650. #major-panel {
  1651. width:100%;
  1652. height:100%;
  1653. position:absolute;
  1654. right:0;
  1655. top:0;
  1656. bottom:0;
  1657. }
  1658. body {
  1659. min-width:300px;
  1660. }
  1661. }
  1662. @media screen and (min-width: 481px) {
  1663. #minor-panel {
  1664. width: 33%;
  1665. height:100%;
  1666. position:absolute;
  1667. left:0;
  1668. top:0;
  1669. bottom:0;
  1670. }
  1671. #major-panel {
  1672. width:67%;
  1673. height:100%;
  1674. position:absolute;
  1675. right:0;
  1676. top:0;
  1677. bottom:0;
  1678. }
  1679. body {
  1680. min-width:300px;
  1681. }
  1682. }
  1683. div#dialogPanel {
  1684. display:none;
  1685. width:100%;
  1686. height:100%;
  1687. position:absolute;
  1688. left:0;
  1689. top:0;
  1690. bottom:0;
  1691. z-index:1000;
  1692. background-color: #e6e6e6;
  1693. }
  1694. div.minorPanelActive{
  1695. display:block !important;
  1696. }
  1697. div.majorPanelActive{
  1698. display:block !important;
  1699. }