style.css 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650
  1. /* ---------- Overall Specifications ---------- */
  2. body {
  3. line-height: 1.5;
  4. font-size: 87.5%;
  5. word-wrap: break-word;
  6. margin: 0;
  7. padding: 0;
  8. border: 0;
  9. outline: 0;
  10. }
  11. a:link,
  12. a:visited {
  13. text-decoration: none;
  14. }
  15. a:hover,
  16. a:active,
  17. a:focus {
  18. text-decoration: underline;
  19. }
  20. h1,
  21. h2,
  22. h3,
  23. h4,
  24. h5,
  25. h6 {
  26. margin: 1.0em 0 0.5em;
  27. font-weight: inherit;
  28. }
  29. h1 {
  30. font-size: 1.357em;
  31. color: #000;
  32. }
  33. h2 {
  34. font-size: 1.143em;
  35. }
  36. p {
  37. margin: 0 0 1.2em;
  38. }
  39. del {
  40. text-decoration: line-through;
  41. }
  42. tr.odd {
  43. background-color: #dddddd;
  44. }
  45. img {
  46. outline: 0;
  47. }
  48. code,
  49. pre,
  50. kbd,
  51. samp,
  52. var {
  53. padding: 0 0.4em;
  54. font-size: 0.857em;
  55. font-family: Menlo, Consolas, "Andale Mono", "Lucida Console", "Nimbus Mono L", "DejaVu Sans Mono", monospace, "Courier New";
  56. }
  57. code {
  58. background-color: #f2f2f2;
  59. background-color: rgba(40, 40, 0, 0.06);
  60. }
  61. pre code,
  62. pre kbd,
  63. pre samp,
  64. pre var,
  65. kbd kbd,
  66. kbd samp,
  67. code var {
  68. font-size: 100%;
  69. background-color: transparent;
  70. }
  71. pre code,
  72. pre samp,
  73. pre var {
  74. padding: 0;
  75. }
  76. .description code {
  77. font-size: 1em;
  78. }
  79. kbd {
  80. background-color: #f2f2f2;
  81. border: 1px outset #575757;
  82. margin: 0 3px;
  83. color: #666;
  84. display: inline-block;
  85. padding: 0 6px;
  86. -khtml-border-radius: 5px;
  87. -moz-border-radius: 5px;
  88. -webkit-border-radius: 5px;
  89. border-radius: 5px;
  90. }
  91. pre {
  92. background-color: #f2f2f2;
  93. background-color: rgba(40, 40, 0, 0.06);
  94. margin: 10px 0;
  95. overflow: hidden;
  96. padding: 15px;
  97. white-space: pre-wrap;
  98. }
  99. /* ------------------ Fonts ------------------ */
  100. body,
  101. #site-slogan,
  102. .ui-widget,
  103. .comment-form label {
  104. font-family: Georgia, "Times New Roman", Times, serif;
  105. }
  106. #header,
  107. #footer-wrapper,
  108. #skip-link,
  109. ul.contextual-links,
  110. ul.links,
  111. ul.primary,
  112. .item-list .pager,
  113. div.field-type-taxonomy-term-reference,
  114. div.messages,
  115. div.meta,
  116. p.comment-time,
  117. table,
  118. .breadcrumb {
  119. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  120. }
  121. input,
  122. textarea,
  123. select,
  124. a.button {
  125. font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
  126. }
  127. /* ------------------ Reset Styles ------------------ */
  128. caption {
  129. text-align: left; /* LTR */
  130. font-weight: normal;
  131. }
  132. blockquote {
  133. background: #f7f7f7;
  134. border-left: 1px solid #bbb;
  135. font-style: italic;
  136. margin: 1.5em 10px;
  137. padding: 0.5em 10px;
  138. }
  139. blockquote:before {
  140. color: #bbb;
  141. content: "\201C";
  142. font-size: 3em;
  143. line-height: 0.1em;
  144. margin-right: 0.2em;
  145. vertical-align: -.4em;
  146. }
  147. blockquote:after {
  148. color: #bbb;
  149. content: "\201D";
  150. font-size: 3em;
  151. line-height: 0.1em;
  152. vertical-align: -.45em;
  153. }
  154. blockquote > p:first-child {
  155. display: inline;
  156. }
  157. a.feed-icon {
  158. display: inline-block;
  159. padding: 15px 0 0 0;
  160. }
  161. /* ------------------ Table Styles ------------------ */
  162. table {
  163. border: 0;
  164. border-spacing: 0;
  165. font-size: 0.857em;
  166. margin: 10px 0;
  167. width: 100%;
  168. }
  169. table table {
  170. font-size: 1em;
  171. }
  172. #footer-wrapper table {
  173. font-size: 1em;
  174. }
  175. table tr th {
  176. background: #757575;
  177. background: rgba(0, 0, 0, 0.51);
  178. border-bottom-style: none;
  179. }
  180. table tr th,
  181. table tr th a,
  182. table tr th a:hover {
  183. color: #FFF;
  184. font-weight: bold;
  185. }
  186. table tbody tr th {
  187. vertical-align: top;
  188. }
  189. tr td,
  190. tr th {
  191. padding: 4px 9px;
  192. border: 1px solid #fff;
  193. text-align: left; /* LTR */
  194. }
  195. #footer-wrapper tr td,
  196. #footer-wrapper tr th {
  197. border-color: #555;
  198. border-color: rgba(255, 255, 255, 0.18);
  199. }
  200. tr.odd {
  201. background: #e4e4e4;
  202. background: rgba(0, 0, 0, 0.105);
  203. }
  204. tr,
  205. tr.even {
  206. background: #efefef;
  207. background: rgba(0, 0, 0, 0.063);
  208. }
  209. table ul.links {
  210. margin: 0;
  211. padding: 0;
  212. font-size: 1em;
  213. }
  214. table ul.links li {
  215. padding: 0 1em 0 0;
  216. }
  217. /* ------------------ List Styles ------------------ */
  218. .block ol,
  219. .block ul {
  220. margin: 0;
  221. padding: 0 0 0.25em 1em; /* LTR */
  222. }
  223. .contextual-links-wrapper {
  224. font-size: small !important;
  225. }
  226. ul.contextual-links {
  227. font-size: 0.923em;
  228. }
  229. .contextual-links-wrapper a {
  230. text-shadow: 0 0 0 !important;
  231. }
  232. .item-list .pager {
  233. font-size: 0.929em;
  234. }
  235. ul.menu li {
  236. margin: 0;
  237. }
  238. .region-content ul,
  239. .region-content ol {
  240. margin: 1em 0;
  241. padding: 0 0 0.25em 2.5em; /* LTR */
  242. }
  243. .item-list ul li {
  244. margin: 0;
  245. padding: 0.2em 0.5em 0 0; /* LTR */
  246. }
  247. ul.tips {
  248. padding: 0 0 0 1.25em; /* LTR */
  249. }
  250. /* ------------------ Header ------------------ */
  251. #skip-link {
  252. left: 50%;
  253. margin-left: -5.25em;
  254. margin-top: 0;
  255. position: absolute;
  256. width: auto;
  257. z-index: 50;
  258. }
  259. #skip-link a,
  260. #skip-link a:link,
  261. #skip-link a:visited {
  262. background: #444;
  263. background: rgba(0, 0, 0, 0.6);
  264. color: #fff;
  265. display: block;
  266. font-size: 0.94em;
  267. line-height: 1.7;
  268. padding: 1px 10px 2px 10px;
  269. text-decoration: none;
  270. -khtml-border-radius: 0 0 10px 10px;
  271. -moz-border-radius: 0 0 10px 10px;
  272. -webkit-border-top-left-radius: 0;
  273. -webkit-border-top-right-radius: 0;
  274. -webkit-border-bottom-left-radius: 10px;
  275. -webkit-border-bottom-right-radius: 10px;
  276. border-radius: 0 0 10px 10px;
  277. }
  278. #skip-link a:hover,
  279. #skip-link a:active,
  280. #skip-link a:focus {
  281. outline: 0;
  282. }
  283. #logo {
  284. float: left; /* LTR */
  285. padding: 15px 15px 15px 10px; /* LTR */
  286. }
  287. #name-and-slogan {
  288. float: left; /* LTR */
  289. padding-top: 34px;
  290. margin: 0 0 30px 15px; /* LTR */
  291. }
  292. #site-name {
  293. font-size: 1.821em;
  294. color: #686868;
  295. line-height: 1;
  296. }
  297. h1#site-name {
  298. margin: 0;
  299. }
  300. #site-name a {
  301. font-weight: normal;
  302. }
  303. #site-slogan {
  304. font-size: 0.929em;
  305. margin-top: 7px;
  306. word-spacing: 0.1em;
  307. font-style: italic;
  308. }
  309. /* Region header blocks. */
  310. .region-header .block {
  311. font-size: 0.857em;
  312. float: left; /* LTR */
  313. margin: 0 10px;
  314. padding: 0;
  315. }
  316. .region-header .block .content {
  317. margin: 0;
  318. padding: 0;
  319. }
  320. .region-header .block ul {
  321. margin: 0;
  322. padding: 0;
  323. }
  324. .region-header .block li {
  325. list-style: none;
  326. list-style-image: none;
  327. padding: 0;
  328. }
  329. .region-header .form-text {
  330. background: #fefefe;
  331. background: rgba(255, 255, 255, 0.7);
  332. border-color: #ccc;
  333. border-color: rgba(255, 255, 255, 0.3);
  334. margin-right: 2px; /* LTR */
  335. width: 120px;
  336. }
  337. .region-header .form-text:hover,
  338. .region-header .form-text:focus,
  339. .region-header .form-text:active {
  340. background: #fff;
  341. background: rgba(255, 255, 255, 0.8);
  342. }
  343. .region-header .form-required {
  344. color: #eee;
  345. color: rgba(255, 255, 255, 0.7);
  346. }
  347. /* Region header block menus. */
  348. .region-header .block-menu {
  349. border: 1px solid;
  350. border-color: #eee;
  351. border-color: rgba(255, 255, 255, 0.2);
  352. padding: 0;
  353. width: 208px;
  354. }
  355. .region-header .block-menu li a {
  356. display: block;
  357. border-bottom: 1px solid;
  358. border-bottom-color: #eee;
  359. border-bottom-color: rgba(255, 255, 255, 0.2);
  360. padding: 3px 7px;
  361. }
  362. .region-header .block-menu li a:hover,
  363. .region-header .block-menu li a:focus,
  364. .region-header .block-menu li a:active {
  365. text-decoration: none;
  366. background: rgba(255, 255, 255, 0.15);
  367. }
  368. .region-header .block-menu li.last a {
  369. border-bottom: 0;
  370. }
  371. /* User Login block in the header region */
  372. .region-header #block-user-login {
  373. width: auto;
  374. }
  375. .region-header #block-user-login .content {
  376. margin-top: 2px;
  377. }
  378. .region-header #block-user-login .form-item {
  379. float: left; /* LTR */
  380. margin: 0;
  381. padding: 0;
  382. }
  383. .region-header #block-user-login div.item-list,
  384. .region-header #block-user-login div.description {
  385. font-size: 0.916em;
  386. margin: 0;
  387. }
  388. .region-header #block-user-login div.item-list {
  389. clear: both;
  390. }
  391. .region-header #block-user-login div.description {
  392. display: inline;
  393. }
  394. .region-header #block-user-login .item-list ul {
  395. padding: 0;
  396. line-height: 1;
  397. }
  398. .region-header #block-user-login .item-list li {
  399. list-style: none;
  400. float: left; /* LTR */
  401. padding: 3px 0 1px;
  402. }
  403. .region-header #block-user-login .item-list li.last {
  404. padding-left: 0.5em; /* LTR */
  405. }
  406. .region-header #block-user-login ul.openid-links li.last {
  407. padding-left: 0; /* LTR */
  408. }
  409. .region-header #user-login-form li.openid-link a,
  410. .region-header #user-login li.openid-link a {
  411. padding-left: 20px; /* LTR */
  412. }
  413. .region-header #block-user-login .form-actions {
  414. margin: 4px 0 0;
  415. padding: 0;
  416. clear: both;
  417. }
  418. .region-header #block-user-login input.form-submit {
  419. border: 1px solid;
  420. border-color: #ccc;
  421. border-color: rgba(255, 255, 255, 0.5);
  422. background: #eee;
  423. background: rgba(255, 255, 255, 0.7);
  424. margin: 4px 0;
  425. padding: 3px 8px;
  426. }
  427. .region-header #block-user-login input.form-submit:hover,
  428. .region-header #block-user-login input.form-submit:focus {
  429. background: #fff;
  430. background: rgba(255, 255, 255, 0.9);
  431. }
  432. /* Search block in region header. */
  433. .region-header #block-search-form {
  434. width: 208px;
  435. }
  436. .region-header #block-search-form .form-text {
  437. width: 154px;
  438. }
  439. /* Language switcher block in region header. */
  440. .region-header .block-locale ul li {
  441. display: inline;
  442. padding: 0 0.5em;
  443. }
  444. /* --------------- Main Menu ------------ */
  445. #main-menu {
  446. clear: both;
  447. }
  448. #main-menu-links {
  449. font-size: 0.929em;
  450. margin: 0;
  451. padding: 0 15px;
  452. }
  453. #main-menu-links li {
  454. float: left; /* LTR */
  455. list-style: none;
  456. padding: 0 1px;
  457. margin: 0 1px;
  458. }
  459. #main-menu-links a {
  460. color: #333;
  461. background: #ccc;
  462. background: rgba(255, 255, 255, 0.7);
  463. float: left; /* LTR */
  464. height: 2.4em;
  465. line-height: 2.4em;
  466. padding: 0 0.8em;
  467. text-decoration: none;
  468. text-shadow: 0 1px #eee;
  469. -khtml-border-radius-topleft: 8px;
  470. -khtml-border-radius-topright: 8px;
  471. -moz-border-radius-topleft: 8px;
  472. -moz-border-radius-topright: 8px;
  473. -webkit-border-top-left-radius: 8px;
  474. -webkit-border-top-right-radius: 8px;
  475. border-top-left-radius: 8px;
  476. border-top-right-radius: 8px;
  477. }
  478. #main-menu-links a:hover,
  479. #main-menu-links a:focus {
  480. background: #f6f6f2;
  481. background: rgba(255, 255, 255, 0.95);
  482. }
  483. #main-menu-links a:active {
  484. background: #b3b3b3;
  485. background: rgba(255, 255, 255, 1);
  486. }
  487. #main-menu-links li a.active {
  488. border-bottom: none;
  489. }
  490. .featured #main-menu-links li a:active,
  491. .featured #main-menu-links li a.active {
  492. background: #f0f0f0;
  493. background: rgba(240, 240, 240, 1.0);
  494. }
  495. /* --------------- Secondary Menu ------------ */
  496. #secondary-menu-links {
  497. float: right; /* LTR */
  498. font-size: 0.929em;
  499. margin: 10px 10px 0;
  500. }
  501. #secondary-menu-links a:hover,
  502. #secondary-menu-links a:focus {
  503. text-decoration: underline;
  504. }
  505. /* ------------------- Main ------------------- */
  506. #main {
  507. margin-top: 20px;
  508. margin-bottom: 40px;
  509. }
  510. /* ----------------- Featured ----------------- */
  511. #featured {
  512. text-align: center;
  513. font-size: 1.643em;
  514. font-weight: normal;
  515. line-height: 1.4;
  516. padding: 20px 0 45px;
  517. margin: 0;
  518. background: #f0f0f0;
  519. background: rgba(30, 50, 10, 0.08);
  520. border-bottom: 1px solid #e7e7e7;
  521. text-shadow: 1px 1px #fff;
  522. }
  523. #featured h2 {
  524. font-size: 1.174em;
  525. line-height: 1;
  526. }
  527. #featured p {
  528. margin: 0;
  529. padding: 0;
  530. }
  531. /* --------------- Highlighted ---------------- */
  532. #highlighted {
  533. border-bottom: 1px solid #d3d7d9;
  534. font-size: 120%;
  535. }
  536. /* ------------------- Help ------------------- */
  537. .region-help {
  538. border: 1px solid #d3d7d9;
  539. padding: 0 1.5em;
  540. margin-bottom: 30px;
  541. }
  542. /* ----------------- Content ------------------ */
  543. .content {
  544. margin-top: 10px;
  545. }
  546. h1#page-title {
  547. font-size: 2em;
  548. line-height: 1;
  549. }
  550. #content h2 {
  551. margin-bottom: 2px;
  552. font-size: 1.429em;
  553. line-height: 1.4;
  554. }
  555. .node .content {
  556. font-size: 1.071em;
  557. }
  558. .node-teaser .content {
  559. font-size: 1em;
  560. }
  561. .node-teaser h2 {
  562. margin-top: 0;
  563. padding-top: 0.5em;
  564. }
  565. .node-teaser h2 a {
  566. color: #181818;
  567. }
  568. .node-teaser {
  569. border-bottom: 1px solid #d3d7d9;
  570. margin-bottom: 30px;
  571. padding-bottom: 15px;
  572. }
  573. .node-sticky {
  574. background: #f9f9f9;
  575. background: rgba(0, 0, 0, 0.024);
  576. border: 1px solid #d3d7d9;
  577. padding: 0 15px 15px;
  578. }
  579. .node-full {
  580. background: none;
  581. border: none;
  582. padding: 0;
  583. }
  584. .node-teaser .content {
  585. clear: none;
  586. line-height: 1.6;
  587. }
  588. .meta {
  589. font-size: 0.857em;
  590. color: #68696b;
  591. margin-bottom: -5px;
  592. }
  593. .submitted .user-picture img {
  594. float: left; /* LTR */
  595. height: 20px;
  596. margin: 1px 5px 0 0; /* LTR */
  597. }
  598. .field-type-taxonomy-term-reference {
  599. margin: 0 0 1.2em;
  600. }
  601. .field-type-taxonomy-term-reference .field-label {
  602. font-weight: normal;
  603. margin: 0;
  604. padding-right: 5px; /* LTR */
  605. }
  606. .field-type-taxonomy-term-reference .field-label,
  607. .field-type-taxonomy-term-reference ul.links {
  608. font-size: 0.8em;
  609. }
  610. .node-teaser .field-type-taxonomy-term-reference .field-label,
  611. .node-teaser .field-type-taxonomy-term-reference ul.links {
  612. font-size: 0.821em;
  613. }
  614. .field-type-taxonomy-term-reference ul.links {
  615. padding: 0;
  616. margin: 0;
  617. list-style: none;
  618. }
  619. .field-type-taxonomy-term-reference ul.links li {
  620. float: left; /* LTR */
  621. padding: 0 1em 0 0; /* LTR */
  622. white-space: nowrap;
  623. }
  624. .link-wrapper {
  625. text-align: right;
  626. }
  627. .field-type-image img,
  628. .user-picture img {
  629. margin: 0 0 1em;
  630. }
  631. ul.links {
  632. color: #68696b;
  633. font-size: 0.821em;
  634. }
  635. .node-unpublished {
  636. margin: -20px -15px 0;
  637. padding: 20px 15px 0;
  638. }
  639. .node-unpublished .comment-text .comment-arrow {
  640. border-left: 1px solid #fff4f4;
  641. border-right: 1px solid #fff4f4;
  642. }
  643. /* ----------------- Comments ----------------- */
  644. .comment h2.title {
  645. margin-bottom: 1em;
  646. }
  647. .comment div.user-picture img {
  648. margin-left: 0; /* LTR */
  649. }
  650. .comment {
  651. margin-bottom: 20px;
  652. display: table;
  653. vertical-align: top;
  654. }
  655. .comment .attribution {
  656. display: table-cell;
  657. padding: 0 30px 0 0; /* LTR */
  658. vertical-align: top;
  659. overflow: hidden;
  660. }
  661. .comment .attribution img {
  662. margin: 0;
  663. border: 1px solid #d3d7d9;
  664. }
  665. .comment .attribution .username {
  666. white-space: nowrap;
  667. }
  668. .comment .submitted p {
  669. margin: 4px 0;
  670. font-size: 1.071em;
  671. line-height: 1.2;
  672. }
  673. .comment .submitted .comment-time {
  674. font-size: 0.786em;
  675. color: #68696b;
  676. }
  677. .comment .submitted .comment-permalink {
  678. font-size: 0.786em;
  679. text-transform: lowercase;
  680. }
  681. .comment .content {
  682. font-size: 0.929em;
  683. line-height: 1.6;
  684. }
  685. .comment .comment-arrow {
  686. background: url(../images/comment-arrow.gif) no-repeat 0 center transparent; /* LTR */
  687. border-left: 1px solid;
  688. border-right: 1px solid;
  689. height: 40px;
  690. margin-left: -47px; /* LTR */
  691. margin-top: 10px;
  692. position: absolute;
  693. width: 20px;
  694. }
  695. .comment .comment-text {
  696. padding: 10px 25px;
  697. border: 1px solid #d3d7d9;
  698. display: table-cell;
  699. vertical-align: top;
  700. position: relative;
  701. width: 100%;
  702. }
  703. .comment .indented {
  704. margin-left: 40px; /* LTR */
  705. }
  706. .comment ul.links {
  707. padding: 0 0 0.25em 0;
  708. }
  709. .comment ul.links li {
  710. padding: 0 0.5em 0 0; /* LTR */
  711. }
  712. .comment-unpublished {
  713. margin-right: 5px; /* LTR */
  714. padding: 5px 2px 5px 5px; /* LTR */
  715. }
  716. .comment-unpublished .comment-text .comment-arrow {
  717. border-left: 1px solid #fff4f4;
  718. border-right: 1px solid #fff4f4;
  719. }
  720. /* ------------------ Sidebar ----------------- */
  721. .sidebar .section {
  722. padding-top: 10px;
  723. }
  724. .sidebar .block {
  725. border: 1px solid;
  726. padding: 15px 20px;
  727. margin: 0 0 20px;
  728. }
  729. .sidebar h2 {
  730. margin: 0 0 0.5em;
  731. border-bottom: 1px solid #d6d6d6;
  732. padding-bottom: 5px;
  733. text-shadow: 0 1px 0 #fff;
  734. font-size: 1.071em;
  735. line-height: 1.2;
  736. }
  737. .sidebar .block .content {
  738. font-size: 0.914em;
  739. line-height: 1.4;
  740. }
  741. .sidebar tbody {
  742. border: none;
  743. }
  744. .sidebar tr.even,
  745. .sidebar tr.odd {
  746. background: none;
  747. border-bottom: 1px solid #d6d6d6;
  748. }
  749. /* ----------------- Triptych ----------------- */
  750. #triptych-wrapper {
  751. background-color: #f0f0f0;
  752. background: rgba(30, 50, 10, 0.08);
  753. border-top: 1px solid #e7e7e7;
  754. }
  755. #triptych h2 {
  756. color: #000;
  757. font-size: 1.714em;
  758. margin-bottom: 0.8em;
  759. text-shadow: 0 1px 0 #fff;
  760. text-align: center;
  761. line-height: 1;
  762. }
  763. #triptych .block {
  764. margin-bottom: 2em;
  765. padding-bottom: 2em;
  766. border-bottom: 1px solid #dfdfdf;
  767. line-height: 1.3;
  768. }
  769. #triptych .block.last {
  770. border-bottom: none;
  771. }
  772. #triptych .block ul li,
  773. #triptych .block ol li {
  774. list-style: none;
  775. }
  776. #triptych .block ul,
  777. #triptych .block ol {
  778. padding-left: 0;
  779. }
  780. #triptych #block-user-login .form-text {
  781. width: 185px;
  782. }
  783. #triptych #block-user-online p {
  784. margin-bottom: 0;
  785. }
  786. #triptych #block-node-syndicate h2 {
  787. overflow: hidden;
  788. width: 0;
  789. height: 0;
  790. }
  791. #triptych-last #block-node-syndicate {
  792. text-align: right;
  793. }
  794. #triptych #block-search-form .form-type-textfield input {
  795. width: 185px;
  796. }
  797. #triptych-middle #block-system-powered-by {
  798. text-align: center;
  799. }
  800. #triptych-last #block-system-powered-by {
  801. text-align: right;
  802. }
  803. /* ------------------ Footer ------------------ */
  804. #footer-wrapper {
  805. color: #c0c0c0;
  806. color: rgba(255, 255, 255, 0.65);
  807. font-size: 0.857em;
  808. }
  809. #footer-wrapper a {
  810. color: #fcfcfc;
  811. color: rgba(255, 255, 255, 0.8);
  812. }
  813. #footer-wrapper a:hover,
  814. #footer-wrapper a:focus {
  815. color: #fefefe;
  816. color: rgba(255, 255, 255, 0.95);
  817. text-decoration: underline;
  818. }
  819. #footer-wrapper .block {
  820. margin: 20px 0;
  821. border: 1px solid #444;
  822. border-color: rgba(255, 255, 255, 0.1);
  823. padding: 10px;
  824. }
  825. #footer-columns .block-menu,
  826. #footer .block {
  827. margin: 0;
  828. padding: 0;
  829. border: none;
  830. }
  831. #footer .block {
  832. margin: 0.5em 0;
  833. }
  834. #footer .block .content {
  835. padding: 0.5em 0;
  836. margin-top: 0;
  837. }
  838. #footer .block h2 {
  839. margin: 0;
  840. }
  841. #footer-columns h2 {
  842. border-bottom: 1px solid #555;
  843. border-color: rgba(255, 255, 255, 0.15);
  844. font-size: 1em;
  845. margin-bottom: 0;
  846. padding-bottom: 3px;
  847. text-transform: uppercase;
  848. }
  849. #footer-columns .content {
  850. margin-top: 0;
  851. }
  852. #footer-columns p {
  853. margin-top: 1em;
  854. }
  855. #footer-columns .content ul {
  856. list-style: none;
  857. padding-left: 0; /* LTR */
  858. margin-left: 0;
  859. }
  860. #footer-columns .content li {
  861. list-style: none;
  862. margin: 0;
  863. padding: 0;
  864. }
  865. #footer-columns .content li a {
  866. display: block;
  867. border-bottom: 1px solid #555;
  868. border-color: rgba(255, 255, 255, 0.15);
  869. line-height: 1.2;
  870. padding: 0.8em 2px 0.8em 20px; /* LTR */
  871. text-indent: -15px;
  872. }
  873. #footer-columns .content li a:hover,
  874. #footer-columns .content li a:focus {
  875. background-color: #1f1f21;
  876. background-color: rgba(255, 255, 255, 0.05);
  877. text-decoration: none;
  878. }
  879. #footer {
  880. letter-spacing: 0.2px;
  881. margin-top: 30px;
  882. border-top: 1px solid #555;
  883. border-color: rgba(255, 255, 255, 0.15);
  884. }
  885. #footer .region {
  886. margin-top: 20px;
  887. }
  888. #footer .block {
  889. clear: both;
  890. }
  891. #footer ul,
  892. #footer li {
  893. list-style: none;
  894. margin: 0;
  895. padding: 0;
  896. }
  897. #footer li a {
  898. float: left; /* LTR */
  899. padding: 0 12px;
  900. display: block;
  901. border-right: 1px solid #555; /* LTR */
  902. border-color: rgba(255, 255, 255, 0.15);
  903. }
  904. #footer li.first a {
  905. padding-left: 0; /* LTR */
  906. }
  907. #footer li.last a {
  908. padding-right: 0; /* LTR */
  909. border-right: none; /* LTR */
  910. }
  911. #footer-wrapper tr.odd {
  912. background-color: transparent;
  913. }
  914. #footer-wrapper tr.even {
  915. background-color: #2c2c2c;
  916. background-color: rgba(0, 0, 0, 0.15);
  917. }
  918. /* --------------- System Tabs --------------- */
  919. .tabs {
  920. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  921. margin-bottom: 20px;
  922. }
  923. .tabs ul.primary {
  924. padding: 0 3px;
  925. margin: 0;
  926. overflow: hidden;
  927. border: none;
  928. background: transparent url(../images/tabs-border.png) repeat-x left bottom;
  929. }
  930. .tabs ul.primary li {
  931. display: block;
  932. float: left; /* LTR */
  933. vertical-align: bottom;
  934. margin: 0 5px 0 0; /* LTR */
  935. }
  936. .tabs ul.primary li.active a {
  937. border-bottom: 1px solid #ffffff;
  938. }
  939. .tabs ul.primary li a {
  940. color: #000;
  941. background-color: #ededed;
  942. height: 1.8em;
  943. line-height: 1.9;
  944. display: block;
  945. font-size: 0.929em;
  946. float: left; /* not LTR */
  947. padding: 0 10px 3px;
  948. margin: 0;
  949. text-shadow: 0 1px 0 #fff;
  950. -khtml-border-radius-topleft: 6px;
  951. -moz-border-radius-topleft: 6px;
  952. -webkit-border-top-left-radius: 6px;
  953. border-top-left-radius: 6px;
  954. -khtml-border-radius-topright: 6px;
  955. -moz-border-radius-topright: 6px;
  956. -webkit-border-top-right-radius: 6px;
  957. border-top-right-radius: 6px;
  958. }
  959. .tabs ul.primary li.active a {
  960. background-color: #ffffff;
  961. }
  962. .tabs ul.secondary {
  963. border-bottom: none;
  964. padding: 0.5em 0;
  965. }
  966. .tabs ul.secondary li {
  967. display: block;
  968. float: left; /* LTR */
  969. }
  970. .tabs ul.secondary li:last-child {
  971. border-right: none; /* LTR */
  972. }
  973. .tabs ul.secondary li:first-child {
  974. padding-left: 0; /* LTR */
  975. }
  976. .tabs ul.secondary li a {
  977. padding: 0.25em 0.5em;
  978. }
  979. .tabs ul.secondary li a.active {
  980. background: #f2f2f2;
  981. border-bottom: none;
  982. -moz-border-radius: 5px;
  983. -webkit-border-radius: 5px;
  984. -khtml-border-radius: 5px;
  985. border-radius: 5px;
  986. }
  987. ul.action-links {
  988. list-style: none;
  989. margin: 5px;
  990. padding: 0.5em 1em;
  991. }
  992. ul.action-links li {
  993. display: inline-block;
  994. margin-left: 10px;
  995. }
  996. ul.action-links li a {
  997. padding-left: 15px;
  998. background: url(../images/add.png) no-repeat left center;
  999. margin: 0 10px 0 0;
  1000. }
  1001. /* ---------------- Messages ----------------- */
  1002. #messages {
  1003. padding: 20px 0 5px;
  1004. margin: 0 auto;
  1005. }
  1006. .featured #messages {
  1007. background: #f0f0f0;
  1008. background: rgba(30, 50, 10, 0.08);
  1009. }
  1010. div.messages {
  1011. margin: 8px 15px;
  1012. }
  1013. /* -------------- Breadcrumbs -------------- */
  1014. .breadcrumb {
  1015. font-size: 0.929em;
  1016. }
  1017. /* -------------- User Profile -------------- */
  1018. .profile .user-picture {
  1019. float: none;
  1020. }
  1021. /* -------------- Password Meter ------------- */
  1022. .confirm-parent,
  1023. .password-parent {
  1024. width: 34em;
  1025. }
  1026. .password-parent,
  1027. div.form-item div.password-suggestions {
  1028. position: relative;
  1029. }
  1030. .password-strength-text,
  1031. .password-strength-title,
  1032. div.password-confirm {
  1033. font-size: 0.82em;
  1034. }
  1035. .password-strength-text {
  1036. margin-top: 0.2em;
  1037. }
  1038. div.password-confirm {
  1039. margin-top: 2.2em;
  1040. width: 20.73em;
  1041. }
  1042. /* ---------------- Buttons ---------------- */
  1043. input.form-submit,
  1044. a.button {
  1045. background: #fff url(../images/buttons.png) 0 0 repeat-x;
  1046. border: 1px solid #e4e4e4;
  1047. border-bottom: 1px solid #b4b4b4;
  1048. border-left-color: #d2d2d2;
  1049. border-right-color: #d2d2d2;
  1050. color: #3a3a3a;
  1051. cursor: pointer;
  1052. font-size: 0.929em;
  1053. font-weight: normal;
  1054. text-align: center;
  1055. margin-bottom: 1em;
  1056. margin-right: 0.6em; /* LTR */
  1057. padding: 4px 17px;
  1058. -khtml-border-radius: 15px;
  1059. -moz-border-radius: 20px;
  1060. -webkit-border-radius: 15px;
  1061. border-radius: 15px;
  1062. }
  1063. a.button:link,
  1064. a.button:visited,
  1065. a.button:hover,
  1066. a.button:focus,
  1067. a.button:active {
  1068. text-decoration: none;
  1069. color: #5a5a5a;
  1070. }
  1071. /* -------------- Form Elements ------------- */
  1072. fieldset {
  1073. background: #ffffff;
  1074. border: 1px solid #cccccc;
  1075. margin-top: 10px;
  1076. margin-bottom: 32px;
  1077. padding: 0 0 10px;
  1078. position: relative;
  1079. top: 12px; /* Offsets the negative margin of legends */
  1080. -khtml-border-radius: 4px;
  1081. -moz-border-radius: 4px;
  1082. -webkit-border-radius: 4px;
  1083. border-radius: 4px;
  1084. }
  1085. .fieldset-wrapper {
  1086. margin-top: 25px;
  1087. }
  1088. .node-form .vertical-tabs .fieldset-wrapper {
  1089. margin-top: 0;
  1090. }
  1091. .filter-wrapper {
  1092. top: 0;
  1093. padding: 1em 0 0.2em;
  1094. -khtml-border-radius-topright: 0;
  1095. -khtml-border-radius-topleft: 0;
  1096. -moz-border-radius-topright: 0;
  1097. -moz-border-radius-topleft: 0;
  1098. -webkit-border-top-left-radius: 0;
  1099. -webkit-border-top-right-radius: 0;
  1100. border-top-left-radius: 0;
  1101. border-top-right-radius: 0;
  1102. }
  1103. .filter-help a {
  1104. font-size: 0.857em;
  1105. padding: 2px 20px 0;
  1106. }
  1107. .filter-wrapper .form-item label {
  1108. margin-right: 10px;
  1109. }
  1110. .filter-wrapper .form-item {
  1111. padding: 0 0 0.5em 0.5em;
  1112. }
  1113. .filter-guidelines {
  1114. padding: 0 1.5em 0 0.5em;
  1115. }
  1116. fieldset.collapsed {
  1117. background: transparent;
  1118. -khtml-border-radius: 0;
  1119. -moz-border-radius: 0;
  1120. -webkit-border-radius: 0;
  1121. border-radius: 0;
  1122. }
  1123. fieldset legend {
  1124. background: #dbdbdb;
  1125. border: 1px solid #ccc;
  1126. border-bottom: none;
  1127. color: #3b3b3b;
  1128. display: block;
  1129. height: 2em;
  1130. left: -1px; /* LTR */
  1131. font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
  1132. line-height: 2;
  1133. padding: 0;
  1134. position: absolute;
  1135. text-indent: 10px;
  1136. text-shadow: 0 1px 0 #fff;
  1137. top: -12px;
  1138. width: 100%;
  1139. -khtml-border-radius-topleft: 4px;
  1140. -moz-border-radius-topleft: 4px;
  1141. -webkit-border-top-left-radius: 4px;
  1142. border-top-left-radius: 4px;
  1143. -khtml-border-radius-topright: 4px;
  1144. -moz-border-radius-topright: 4px;
  1145. -webkit-border-top-right-radius: 4px;
  1146. border-top-right-radius: 4px;
  1147. }
  1148. fieldset.collapsed legend {
  1149. -khtml-border-radius: 4px;
  1150. -moz-border-radius: 4px;
  1151. -webkit-border-radius: 4px;
  1152. border-radius: 4px;
  1153. }
  1154. fieldset legend a {
  1155. color: #3b3b3b;
  1156. }
  1157. fieldset legend a:hover,
  1158. fieldset legend a:focus,
  1159. fieldset legend a:active {
  1160. color: #000;
  1161. }
  1162. fieldset .fieldset-wrapper {
  1163. padding: 0 10px;
  1164. }
  1165. fieldset .fieldset-description {
  1166. margin-top: 5px;
  1167. margin-bottom: 1em;
  1168. line-height: 1.4;
  1169. color: #3c3c3c;
  1170. font-style: italic;
  1171. }
  1172. input {
  1173. margin: 2px 0;
  1174. padding: 4px;
  1175. }
  1176. input,
  1177. textarea {
  1178. font-size: 0.929em;
  1179. }
  1180. textarea {
  1181. line-height: 1.5;
  1182. }
  1183. textarea.form-textarea,
  1184. select.form-select {
  1185. padding: 4px;
  1186. }
  1187. input.form-text,
  1188. textarea.form-textarea,
  1189. select.form-select {
  1190. border: 1px solid #ccc;
  1191. }
  1192. input.form-submit:hover,
  1193. input.form-submit:focus {
  1194. background: #dedede;
  1195. }
  1196. .password-suggestions ul li {
  1197. margin-left: 1.2em; /* LTR */
  1198. }
  1199. .form-item {
  1200. margin-bottom: 1em;
  1201. margin-top: 2px;
  1202. }
  1203. .form-item label {
  1204. font-size: 0.929em;
  1205. }
  1206. .form-type-radio label,
  1207. .form-type-checkbox label {
  1208. margin-left: 4px;
  1209. }
  1210. .form-type-radio .description,
  1211. .form-type-checkbox .description {
  1212. margin-left: 2px;
  1213. }
  1214. .form-actions {
  1215. padding-top: 10px;
  1216. }
  1217. /* Contact Form */
  1218. .contact-form #edit-name {
  1219. width: 75%;
  1220. -khtml-border-radius: 4px;
  1221. -moz-border-radius: 4px;
  1222. -webkit-border-radius: 4px;
  1223. border-radius: 4px;
  1224. }
  1225. .contact-form #edit-mail {
  1226. width: 75%;
  1227. -khtml-border-radius: 4px;
  1228. -moz-border-radius: 4px;
  1229. -webkit-border-radius: 4px;
  1230. border-radius: 4px;
  1231. }
  1232. .contact-form #edit-subject {
  1233. width: 75%;
  1234. -khtml-border-radius: 4px;
  1235. -moz-border-radius: 4px;
  1236. -webkit-border-radius: 4px;
  1237. border-radius: 4px;
  1238. }
  1239. .contact-form #edit-message {
  1240. width: 76.3%;
  1241. -khtml-border-top-left-radius: 4px;
  1242. -khtml-border-top-right-radius: 4px;
  1243. -moz-border-radius-topleft: 4px;
  1244. -moz-border-radius-topright: 4px;
  1245. -webkit-border-top-left-radius: 4px;
  1246. -webkit-border-top-right-radius: 4px;
  1247. border-top-left-radius: 4px;
  1248. border-top-right-radius: 4px;
  1249. }
  1250. .contact-form .resizable-textarea .grippie {
  1251. width: 76%;
  1252. -khtml-border-bottom-left-radius: 4px;
  1253. -khtml-border-bottom-right-radius: 4px;
  1254. -moz-border-radius-bottomleft: 4px;
  1255. -moz-border-radius-bottomright: 4px;
  1256. -webkit-border-bottom-left-radius: 4px;
  1257. -webkit-border-bottom-right-radius: 4px;
  1258. border-bottom-left-radius: 4px;
  1259. border-bottom-right-radius: 4px;
  1260. }
  1261. /* Disabled form elements */
  1262. input.form-button-disabled,
  1263. input.form-button-disabled:hover,
  1264. input.form-button-disabled:focus,
  1265. input.form-button-disabled:active,
  1266. .form-disabled input,
  1267. .form-disabled select,
  1268. .form-disabled textarea {
  1269. background: #ededed;
  1270. border-color: #bbb;
  1271. color: #717171;
  1272. }
  1273. .form-disabled .grippie {
  1274. background-color: #ededed;
  1275. border-color: #bbb;
  1276. }
  1277. .form-disabled label {
  1278. color: #717171;
  1279. }
  1280. /* Animated throbber */
  1281. html.js input.form-autocomplete {
  1282. background-position: 100% 4px; /* LTR */
  1283. }
  1284. html.js input.throbbing {
  1285. background-position: 100% -16px; /* LTR */
  1286. }
  1287. /* Comment form */
  1288. .comment-form label {
  1289. float: left; /* LTR */
  1290. font-size: 0.929em;
  1291. width: 120px;
  1292. }
  1293. .comment-form input,
  1294. .comment-form .form-select {
  1295. margin: 0;
  1296. -khtml-border-radius: 4px;
  1297. -moz-border-radius: 4px;
  1298. -webkit-border-radius: 4px;
  1299. border-radius: 4px;
  1300. }
  1301. .comment-form .form-type-textarea label {
  1302. float: none;
  1303. }
  1304. .comment-form .form-item,
  1305. .comment-form .form-radios,
  1306. .comment-form .form-type-checkbox,
  1307. .comment-form .form-select {
  1308. margin-bottom: 10px;
  1309. overflow: hidden;
  1310. }
  1311. .comment-form .form-type-checkbox,
  1312. .comment-form .form-radios {
  1313. margin-left: 120px; /* LTR */
  1314. }
  1315. .comment-form .form-type-checkbox label,
  1316. .comment-form .form-radios label {
  1317. float: none;
  1318. margin-top: 0;
  1319. }
  1320. .comment-form input.form-file {
  1321. width: auto;
  1322. }
  1323. .no-sidebars .comment-form .form-text {
  1324. width: 800px;
  1325. }
  1326. .one-sidebar .comment-form .form-text {
  1327. width: 500px;
  1328. }
  1329. .two-sidebars .comment-form .form-text {
  1330. width: 320px;
  1331. }
  1332. .comment-form .form-item .description {
  1333. font-size: 0.786em;
  1334. line-height: 1.2;
  1335. margin-left: 120px; /* LTR */
  1336. }
  1337. #content h2.comment-form {
  1338. margin-bottom: 0.5em;
  1339. }
  1340. .comment-form .form-textarea {
  1341. -khtml-border-radius-topleft: 4px;
  1342. -khtml-border-radius-topright: 4px;
  1343. -moz-border-radius-topleft: 4px;
  1344. -moz-border-radius-topright: 4px;
  1345. -webkit-border-top-left-radius: 4px;
  1346. -webkit-border-top-right-radius: 4px;
  1347. border-top-left-radius: 4px;
  1348. border-top-right-radius: 4px;
  1349. }
  1350. .comment-form fieldset.filter-wrapper .fieldset-wrapper,
  1351. .comment-form .text-format-wrapper .form-item {
  1352. margin-top: 0;
  1353. margin-bottom: 0;
  1354. }
  1355. .filter-wrapper label {
  1356. width: auto;
  1357. float: none;
  1358. }
  1359. .filter-wrapper .form-select {
  1360. min-width: 120px;
  1361. }
  1362. .comment-form fieldset.filter-wrapper .tips {
  1363. font-size: 0.786em;
  1364. }
  1365. #comment-body-add-more-wrapper .form-type-textarea label {
  1366. margin-bottom: 0.4em;
  1367. }
  1368. #edit-actions input {
  1369. margin-right: 0.6em; /* LTR */
  1370. }
  1371. /* -------------- Other Overrides ------------- */
  1372. div.password-suggestions {
  1373. border: 0;
  1374. }
  1375. .ui-widget-overlay {
  1376. background: #222222;
  1377. opacity: 0.7;
  1378. }
  1379. div.vertical-tabs .vertical-tabs-panes fieldset.vertical-tabs-pane {
  1380. padding: 1em;
  1381. }
  1382. #forum .name {
  1383. font-size: 1.083em;
  1384. }
  1385. #forum .description {
  1386. font-size: 1em;
  1387. }
  1388. /* --------------- Search Form ---------------- */
  1389. #block-search-form {
  1390. padding-bottom: 7px;
  1391. }
  1392. #block-search-form .content {
  1393. margin-top: 0;
  1394. }
  1395. #search-form input#edit-keys,
  1396. #block-search-form .form-item-search-block-form input {
  1397. float: left; /* LTR */
  1398. font-size: 1em;
  1399. height: 1.143em;
  1400. margin-right: 5px;
  1401. width: 9em;
  1402. }
  1403. #search-block-form input.form-submit,
  1404. #search-form input.form-submit {
  1405. margin-left: 0;
  1406. margin-right: 0;
  1407. height: 25px;
  1408. width: 34px;
  1409. padding: 0;
  1410. cursor: pointer;
  1411. text-indent: -9999px;
  1412. border-color: #e4e4e4 #d2d2d2 #b4b4b4;
  1413. background: url(../images/search-button.png) no-repeat center top;
  1414. overflow: hidden;
  1415. }
  1416. #search-block-form input.form-submit:hover,
  1417. #search-block-form input.form-submit:focus,
  1418. #search-form input.form-submit:hover,
  1419. #search-form input.form-submit:focus {
  1420. background-position: center bottom;
  1421. }
  1422. #search-form .form-item-keys label {
  1423. display: block;
  1424. }
  1425. /* --------------- Search Results ---------------- */
  1426. ol.search-results {
  1427. padding-left: 0;
  1428. }
  1429. .search-results li {
  1430. border-bottom: 1px solid #d3d7d9;
  1431. padding-bottom: 0.4285em;
  1432. margin-bottom: 0.5em;
  1433. }
  1434. .search-results li:last-child {
  1435. border-bottom: none;
  1436. padding-bottom: 0;
  1437. margin-bottom: 1em;
  1438. }
  1439. .search-results .search-snippet-info {
  1440. padding-left: 0;
  1441. }
  1442. /* -------------- Shortcut Links -------------- */
  1443. .shortcut-wrapper {
  1444. margin: 2.2em 0 1.1em 0; /* Same as usual h1#page-title margin. */
  1445. }
  1446. .shortcut-wrapper h1#page-title {
  1447. float: left; /* LTR */
  1448. margin: 0;
  1449. }
  1450. div.add-or-remove-shortcuts {
  1451. padding-top: 0.9em;
  1452. }
  1453. .overlay div.add-or-remove-shortcuts {
  1454. padding-top: 0.8em;
  1455. }
  1456. /* ---------- Admin-specific Theming ---------- */
  1457. .page-admin #content img {
  1458. margin-right: 15px; /* LTR */
  1459. }
  1460. .page-admin #content .simpletest-image img {
  1461. margin: 0;
  1462. }
  1463. .page-admin-structure-block-demo .block-region {
  1464. background: #ffff66;
  1465. border: 1px dotted #9f9e00;
  1466. color: #000;
  1467. font: 90% "Lucida Grande", "Lucida Sans Unicode", sans-serif;
  1468. margin: 5px;
  1469. padding: 5px;
  1470. text-align: center;
  1471. text-shadow: none;
  1472. }
  1473. .page-admin-structure-block-demo #featured .block-region {
  1474. font-size: 0.55em;
  1475. }
  1476. .page-admin-structure-block-demo #header .block-region {
  1477. width: 500px;
  1478. }
  1479. .page-admin #admin-dblog img {
  1480. margin: 0 5px;
  1481. }
  1482. /* Fix spacing when Seven is used in the overlay. */
  1483. #system-theme-settings fieldset {
  1484. padding: 0;
  1485. }
  1486. #system-theme-settings fieldset .fieldset-legend {
  1487. margin-top: 0;
  1488. }
  1489. /* Configuration. */
  1490. div.admin .right,
  1491. div.admin .left {
  1492. width: 49%;
  1493. margin: 0;
  1494. }
  1495. div.admin-panel {
  1496. background: #fbfbfb;
  1497. border: 1px solid #ccc;
  1498. margin: 10px 0;
  1499. padding: 0 5px 5px;
  1500. }
  1501. div.admin-panel h3 {
  1502. margin: 16px 7px;
  1503. }
  1504. div.admin-panel dt {
  1505. border-top: 1px solid #ccc;
  1506. padding: 7px 0 0;
  1507. }
  1508. div.admin-panel dd {
  1509. margin: 0 0 10px;
  1510. }
  1511. div.admin-panel .description {
  1512. margin: 0 0 14px 7px;
  1513. }
  1514. /* ---------- Overlay layout styles ----------- */
  1515. .overlay #main,
  1516. .overlay #content {
  1517. width: auto;
  1518. float: none;
  1519. }
  1520. .overlay #page {
  1521. padding: 0 2em;
  1522. }
  1523. .overlay .region-page-top,
  1524. .overlay #header,
  1525. .overlay #page-title,
  1526. .overlay #featured,
  1527. .overlay #sidebar-first,
  1528. .overlay #triptych-wrapper,
  1529. .overlay #footer-wrapper {
  1530. display: none;
  1531. }
  1532. .overlay-processed .field-type-image {
  1533. display: block;
  1534. float: none;
  1535. }
  1536. .overlay #messages {
  1537. width: auto;
  1538. }
  1539. /* ---------- Poll ----------- */
  1540. .node .poll {
  1541. margin: 2em 0;
  1542. }
  1543. .node .poll #edit-choice {
  1544. margin: 0 0 1.5em;
  1545. }
  1546. .poll .vote-form {
  1547. text-align: left; /* LTR */
  1548. }
  1549. .poll .vote-form .choices {
  1550. margin: 0;
  1551. }
  1552. .poll .percent {
  1553. font-size: 0.857em;
  1554. font-style: italic;
  1555. margin-bottom: 3em;
  1556. margin-top: -3.2em;
  1557. float: right;
  1558. text-align: right;
  1559. }
  1560. .poll .text {
  1561. clear: right;
  1562. margin-right: 2.25em;
  1563. }
  1564. .poll .total {
  1565. font-size: 0.929em;
  1566. font-style: italic;
  1567. text-align: right; /* LTR */
  1568. clear: both;
  1569. }
  1570. .node .poll {
  1571. margin: 1.8em 0 0;
  1572. }
  1573. .node .poll .text {
  1574. margin-right: 6.75em;
  1575. }
  1576. .node .poll #edit-choice {
  1577. margin: 0 0 1.2em;
  1578. }
  1579. .poll .bar .foreground {
  1580. background-color: #666;
  1581. }
  1582. #footer-wrapper .poll .bar {
  1583. background-color: #666;
  1584. }
  1585. #footer-wrapper .poll .bar .foreground {
  1586. background-color: #ddd;
  1587. }