style.css 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827
  1. /******************************************************************
  2. Site Name:
  3. Author:
  4. Stylesheet: Main Stylesheet
  5. Here's where the magic happens. Here, you'll see we are calling in
  6. the separate media queries. The base mobile goes outside any query
  7. and is called at the beginning, after that we call the rest
  8. of the styles inside media queries.
  9. ******************************************************************/
  10. /*! normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
  11. /* ==========================================================================
  12. HTML5 display definitions
  13. ========================================================================== */
  14. /*
  15. * Corrects `block` display not defined in IE6/7/8/9 & FF3.
  16. */
  17. article,
  18. aside,
  19. details,
  20. figcaption,
  21. figure,
  22. footer,
  23. header,
  24. hgroup,
  25. nav,
  26. section,
  27. summary {
  28. display: block;
  29. }
  30. /*
  31. * Corrects `inline-block` display not defined in IE6/7/8/9 & FF3.
  32. */
  33. audio,
  34. canvas,
  35. video {
  36. display: inline-block;
  37. *display: inline;
  38. *zoom: 1;
  39. }
  40. /*
  41. * Prevents modern browsers from displaying `audio` without controls.
  42. * Remove excess height in iOS5 devices.
  43. */
  44. audio:not([controls]) {
  45. display: none;
  46. height: 0;
  47. }
  48. /*
  49. * Addresses styling for `hidden` attribute not present in IE7/8/9, FF3, S4.
  50. * Known issue: no IE6 support.
  51. */
  52. [hidden] {
  53. display: none;
  54. }
  55. /* ==========================================================================
  56. Base
  57. ========================================================================== */
  58. /*
  59. * 1. Corrects text resizing oddly in IE6/7 when body `font-size` is set using
  60. * `em` units.
  61. * 2. Prevents iOS text size adjust after orientation change, without disabling
  62. * user zoom.
  63. */
  64. html {
  65. font-size: 100%;
  66. /* 1 */
  67. -webkit-text-size-adjust: 100%;
  68. -ms-text-size-adjust: 100%;
  69. /* 2 */
  70. }
  71. /*
  72. * Addresses `font-family` inconsistency between `textarea` and other form
  73. * elements.
  74. */
  75. html,
  76. button,
  77. input,
  78. select,
  79. textarea {
  80. font-family: sans-serif;
  81. }
  82. /*
  83. * Addresses margins handled incorrectly in IE6/7.
  84. */
  85. body {
  86. margin: 0;
  87. }
  88. /* ==========================================================================
  89. Links
  90. ========================================================================== */
  91. /*
  92. * Addresses `outline` inconsistency between Chrome and other browsers.
  93. */
  94. a:focus {
  95. outline: thin dotted;
  96. }
  97. /*
  98. * Improves readability when focused and also mouse hovered in all browsers.
  99. * people.opera.com/patrickl/experiments/keyboard/test
  100. */
  101. a:active,
  102. a:hover {
  103. outline: 0;
  104. }
  105. /* ==========================================================================
  106. Typography
  107. ========================================================================== */
  108. /*
  109. * Addresses font sizes and margins set differently in IE6/7.
  110. * Addresses font sizes within `section` and `article` in FF4+, Chrome, S5.
  111. */
  112. h1 {
  113. font-size: 2em;
  114. margin: 0.67em 0;
  115. }
  116. h2 {
  117. font-size: 1.5em;
  118. margin: 0.83em 0;
  119. }
  120. h3 {
  121. font-size: 1.17em;
  122. margin: 1em 0;
  123. }
  124. h4 {
  125. font-size: 1em;
  126. margin: 1.33em 0;
  127. }
  128. h5 {
  129. font-size: 0.83em;
  130. margin: 1.67em 0;
  131. }
  132. h6 {
  133. font-size: 0.75em;
  134. margin: 2.33em 0;
  135. }
  136. /*
  137. * Addresses styling not present in IE7/8/9, S5, Chrome.
  138. */
  139. abbr[title] {
  140. border-bottom: 1px dotted;
  141. }
  142. /*
  143. * Addresses style set to `bolder` in FF3+, S4/5, Chrome.
  144. */
  145. b,
  146. strong {
  147. font-weight: bold;
  148. }
  149. blockquote {
  150. margin: 1em 40px;
  151. }
  152. /*
  153. * Addresses styling not present in S5, Chrome.
  154. */
  155. dfn {
  156. font-style: italic;
  157. }
  158. /*
  159. * Addresses styling not present in IE6/7/8/9.
  160. */
  161. mark {
  162. background: #ff0;
  163. color: #000;
  164. }
  165. /*
  166. * Addresses margins set differently in IE6/7.
  167. */
  168. p,
  169. pre {
  170. margin: 1em 0;
  171. }
  172. /*
  173. * Corrects font family set oddly in IE6, S4/5, Chrome.
  174. * en.wikipedia.org/wiki/User:Davidgothberg/Test59
  175. */
  176. code,
  177. kbd,
  178. pre,
  179. samp {
  180. font-family: monospace, serif;
  181. _font-family: 'courier new', monospace;
  182. font-size: 1em;
  183. }
  184. /*
  185. * Improves readability of pre-formatted text in all browsers.
  186. */
  187. pre {
  188. white-space: pre;
  189. white-space: pre-wrap;
  190. word-wrap: break-word;
  191. }
  192. /*
  193. * Addresses CSS quotes not supported in IE6/7.
  194. */
  195. q {
  196. quotes: none;
  197. }
  198. /*
  199. * Addresses `quotes` property not supported in S4.
  200. */
  201. q:before,
  202. q:after {
  203. content: '';
  204. content: none;
  205. }
  206. small {
  207. font-size: 75%;
  208. }
  209. /*
  210. * Prevents `sub` and `sup` affecting `line-height` in all browsers.
  211. * gist.github.com/413930
  212. */
  213. sub,
  214. sup {
  215. font-size: 75%;
  216. line-height: 0;
  217. position: relative;
  218. vertical-align: baseline;
  219. }
  220. sup {
  221. top: -0.5em;
  222. }
  223. sub {
  224. bottom: -0.25em;
  225. }
  226. /* ==========================================================================
  227. Lists
  228. ========================================================================== */
  229. /*
  230. * Addresses margins set differently in IE6/7.
  231. */
  232. dl,
  233. menu,
  234. ol,
  235. ul {
  236. margin: 1em 0;
  237. }
  238. dd {
  239. margin: 0 0 0 40px;
  240. }
  241. /*
  242. * Addresses paddings set differently in IE6/7.
  243. */
  244. menu,
  245. ol,
  246. ul {
  247. padding: 0 0 0 40px;
  248. }
  249. /*
  250. * Corrects list images handled incorrectly in IE7.
  251. */
  252. nav ul,
  253. nav ol {
  254. list-style: none;
  255. list-style-image: none;
  256. }
  257. /* ==========================================================================
  258. Embedded content
  259. ========================================================================== */
  260. /*
  261. * 1. Removes border when inside `a` element in IE6/7/8/9, FF3.
  262. * 2. Improves image quality when scaled in IE7.
  263. * code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
  264. */
  265. img {
  266. border: 0;
  267. /* 1 */
  268. -ms-interpolation-mode: bicubic;
  269. /* 2 */
  270. }
  271. /*
  272. * Corrects overflow displayed oddly in IE9.
  273. */
  274. svg:not(:root) {
  275. overflow: hidden;
  276. }
  277. /* ==========================================================================
  278. Figures
  279. ========================================================================== */
  280. /*
  281. * Addresses margin not present in IE6/7/8/9, S5, O11.
  282. */
  283. figure {
  284. margin: 0;
  285. }
  286. /* ==========================================================================
  287. Forms
  288. ========================================================================== */
  289. /*
  290. * Corrects margin displayed oddly in IE6/7.
  291. */
  292. form {
  293. margin: 0;
  294. }
  295. /*
  296. * Define consistent border, margin, and padding.
  297. */
  298. fieldset {
  299. border: 1px solid #c0c0c0;
  300. margin: 0 2px;
  301. padding: 0.35em 0.625em 0.75em;
  302. }
  303. /*
  304. * 1. Corrects color not being inherited in IE6/7/8/9.
  305. * 2. Corrects text not wrapping in FF3.
  306. * 3. Corrects alignment displayed oddly in IE6/7.
  307. */
  308. legend {
  309. border: 0;
  310. /* 1 */
  311. padding: 0;
  312. white-space: normal;
  313. /* 2 */
  314. *margin-left: -7px;
  315. /* 3 */
  316. }
  317. /*
  318. * 1. Corrects font size not being inherited in all browsers.
  319. * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome.
  320. * 3. Improves appearance and consistency in all browsers.
  321. */
  322. button,
  323. input,
  324. select,
  325. textarea {
  326. font-size: 100%;
  327. /* 1 */
  328. margin: 0;
  329. /* 2 */
  330. vertical-align: baseline;
  331. *vertical-align: middle;
  332. /* 3 */
  333. }
  334. /*
  335. * Addresses FF3/4 setting `line-height` on `input` using `!important` in the
  336. * UA stylesheet.
  337. */
  338. button,
  339. input {
  340. line-height: normal;
  341. }
  342. /*
  343. * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  344. * and `video` controls.
  345. * 2. Corrects inability to style clickable `input` types in iOS.
  346. * 3. Improves usability and consistency of cursor style between image-type
  347. * `input` and others.
  348. * 4. Removes inner spacing in IE7 without affecting normal text inputs.
  349. * Known issue: inner spacing remains in IE6.
  350. */
  351. button,
  352. html input[type="button"],
  353. input[type="reset"],
  354. input[type="submit"] {
  355. -webkit-appearance: button;
  356. /* 2 */
  357. cursor: pointer;
  358. /* 3 */
  359. *overflow: visible;
  360. /* 4 */
  361. }
  362. /*
  363. * Re-set default cursor for disabled elements.
  364. */
  365. button[disabled],
  366. input[disabled] {
  367. cursor: default;
  368. }
  369. /*
  370. * 1. Addresses box sizing set to content-box in IE8/9.
  371. * 2. Removes excess padding in IE8/9.
  372. * 3. Removes excess padding in IE7.
  373. * Known issue: excess padding remains in IE6.
  374. */
  375. input[type="checkbox"],
  376. input[type="radio"] {
  377. box-sizing: border-box;
  378. /* 1 */
  379. padding: 0;
  380. /* 2 */
  381. *height: 13px;
  382. *width: 13px;
  383. /* 3 */
  384. }
  385. /*
  386. * 1. Addresses `appearance` set to `searchfield` in S5, Chrome.
  387. * 2. Addresses `box-sizing` set to `border-box` in S5, Chrome (include `-moz`
  388. * to future-proof).
  389. */
  390. input[type="search"] {
  391. -webkit-appearance: textfield;
  392. /* 1 */
  393. -moz-box-sizing: content-box;
  394. -webkit-box-sizing: content-box;
  395. /* 2 */
  396. box-sizing: content-box;
  397. }
  398. /*
  399. * Removes inner padding and search cancel button in S5, Chrome on OS X.
  400. */
  401. input[type="search"]::-webkit-search-cancel-button,
  402. input[type="search"]::-webkit-search-decoration {
  403. -webkit-appearance: none;
  404. }
  405. /*
  406. * Removes inner padding and border in FF3+.
  407. */
  408. button::-moz-focus-inner,
  409. input::-moz-focus-inner {
  410. border: 0;
  411. padding: 0;
  412. }
  413. /*
  414. * 1. Removes default vertical scrollbar in IE6/7/8/9.
  415. * 2. Improves readability and alignment in all browsers.
  416. */
  417. textarea {
  418. overflow: auto;
  419. /* 1 */
  420. vertical-align: top;
  421. /* 2 */
  422. }
  423. /* ==========================================================================
  424. Tables
  425. ========================================================================== */
  426. /*
  427. * Remove most spacing between table cells.
  428. */
  429. table {
  430. border-collapse: collapse;
  431. border-spacing: 0;
  432. }
  433. /******************************************************************
  434. CUSTOMIZED RESET VALUES
  435. I added these extra styles as a more personalized reset. Feel free
  436. to remove them if you like or add your own. If you want to update
  437. the normalize styles, make sure to edit from this point up.
  438. ******************************************************************/
  439. p {
  440. -webkit-hyphens: auto;
  441. -epub-hyphens: auto;
  442. -moz-hyphens: auto;
  443. hyphens: auto;
  444. }
  445. b,
  446. strong,
  447. .strong {
  448. font-weight: bold;
  449. }
  450. dfn,
  451. em,
  452. .em {
  453. font-style: italic;
  454. }
  455. small,
  456. .small {
  457. font-size: 75%;
  458. }
  459. ul,
  460. ol {
  461. padding: 0;
  462. list-style-type: none;
  463. }
  464. dd {
  465. margin: 0;
  466. }
  467. .sidebar ul,
  468. .sidebar ol,
  469. .commentlist {
  470. list-style: none;
  471. }
  472. /******************************************************************
  473. Site Name:
  474. Author:
  475. Stylesheet: Mixins & Constants Stylesheet
  476. This is where you can take advantage of LESS' great features:
  477. Mixins & Constants. I won't go in-depth on how they work exactly,
  478. there are a few articles below that will help do that. What I will
  479. tell you is that this will help speed up simple changes like
  480. changing a color or adding CSS3 techniques like box shadow and
  481. border-radius.
  482. A WORD OF WARNING: It's very easy to overdo it here. Be careful and
  483. remember less is more.
  484. ******************************************************************/
  485. /*********************
  486. CLEARFIXIN'
  487. *********************/
  488. .clearfix {
  489. zoom: 1;
  490. }
  491. .clearfix:before,
  492. .clearfix:after {
  493. content: "";
  494. display: table;
  495. }
  496. .clearfix:after {
  497. clear: both;
  498. }
  499. /*********************
  500. TOOLS
  501. *********************/
  502. * {
  503. -webkit-box-sizing: border-box;
  504. -moz-box-sizing: border-box;
  505. box-sizing: border-box;
  506. }
  507. .image-replacement {
  508. text-indent: 100%;
  509. white-space: nowrap;
  510. overflow: hidden;
  511. }
  512. /*********************
  513. COLORS
  514. Need help w/ choosing your colors? Try this site out:
  515. http://0to255.com/
  516. *********************/
  517. /*
  518. Here's a great tutorial on how to
  519. use color variables properly:
  520. http://sachagreif.com/sass-color-variables/
  521. */
  522. /*********************
  523. TYPOGRAPHY
  524. *********************/
  525. /* To embed your own fonts, use this syntax
  526. and place your fonts inside the
  527. library/fonts folder. For more information
  528. on embedding fonts, go to:
  529. http://www.fontsquirrel.com/
  530. Be sure to remove the comment brackets.
  531. */
  532. /* @font-face {
  533. font-family: 'Font Name';
  534. src: url('../fonts/font-name.eot');
  535. src: url('../fonts/font-name.eot?#iefix') format('embedded-opentype'),
  536. url('../fonts/font-name.woff') format('woff'),
  537. url('../fonts/font-name.ttf') format('truetype'),
  538. url('../fonts/font-name.svg#font-name') format('svg');
  539. font-weight: normal;
  540. font-style: normal;
  541. }
  542. */
  543. /*
  544. use the best ampersand
  545. http://simplebits.com/notebook/2008/08/14/ampersands-2/
  546. */
  547. span.amp {
  548. font-family: Baskerville, 'Goudy Old Style', Palatino, 'Book Antiqua', serif;
  549. font-style: italic;
  550. }
  551. /* text alignment */
  552. .text-left {
  553. text-align: left;
  554. }
  555. .text-center {
  556. text-align: center;
  557. }
  558. .text-right {
  559. text-align: right;
  560. }
  561. .alert {
  562. margin: 10px;
  563. padding: 5px 18px;
  564. border: 1px solid;
  565. }
  566. .alert-help {
  567. margin: 10px;
  568. padding: 5px 18px;
  569. border: 1px solid;
  570. border-color: #e8dc59;
  571. background: #ebe16f;
  572. }
  573. .alert-info {
  574. margin: 10px;
  575. padding: 5px 18px;
  576. border: 1px solid;
  577. border-color: #bfe4f4;
  578. background: #d5edf8;
  579. }
  580. .alert-error {
  581. margin: 10px;
  582. padding: 5px 18px;
  583. border: 1px solid;
  584. border-color: #f8cdce;
  585. background: #fbe3e4;
  586. }
  587. .alert-success {
  588. margin: 10px;
  589. padding: 5px 18px;
  590. border: 1px solid;
  591. border-color: #deeaae;
  592. background: #e6efc2;
  593. }
  594. /*********************
  595. BORDER RADIUS
  596. *********************/
  597. /*
  598. NOTE: For older browser support (and some mobile),
  599. don't use the shorthand to define *different* corners.
  600. USAGE: .border-radius(4px);
  601. */
  602. /*********************
  603. TRANISTION
  604. *********************/
  605. /* .transition(all,2s); */
  606. /*********************
  607. CSS3 GRADIENTS
  608. Be careful with these since they can
  609. really slow down your CSS. Don't overdo it.
  610. *********************/
  611. /* .css-gradient(#dfdfdf,#f8f8f8); */
  612. /*********************
  613. BOX SHADOW
  614. *********************/
  615. /* .boxShadow(0,0,4px,0,#444); */
  616. /* .boxShadow(none); */
  617. /*********************
  618. BUTTONS
  619. *********************/
  620. .button,
  621. .button:visited {
  622. border: 1px solid #be0d37;
  623. border-top-color: #db0f3f;
  624. border-left-color: #db0f3f;
  625. padding: 4px 12px;
  626. color: #ffffff;
  627. display: inline-block;
  628. font-size: 11px;
  629. font-weight: bold;
  630. text-decoration: none;
  631. text-shadow: 0 1px rgba(0, 0, 0, 0.75);
  632. cursor: pointer;
  633. margin-bottom: 20px;
  634. line-height: 21px;
  635. -webkit-transition: all 0.2s ease-in-out;
  636. -moz-transition: all 0.2s ease-in-out;
  637. -ms-transition: all 0.2s ease-in-out;
  638. -o-transition: all 0.2s ease-in-out;
  639. transition: all 0.2s ease-in-out;
  640. -webkit-border-radius: 4px;
  641. -moz-border-radius: 4px;
  642. border-radius: 4px;
  643. background-color: #e40f42;
  644. background-image: -webkit-gradient(linear, left top, left bottom, from(#f01d4f), to(#e40f42));
  645. background-image: -webkit-linear-gradient(top, #f01d4f, #e40f42);
  646. background-image: -moz-linear-gradient(top, #f01d4f, #e40f42);
  647. background-image: -o-linear-gradient(top, #f01d4f, #e40f42);
  648. background-image: linear-gradient(to bottom, #f01d4f, #e40f42);
  649. }
  650. .button:hover,
  651. .button:visited:hover,
  652. .button:focus,
  653. .button:visited:focus {
  654. color: #ffffff;
  655. border: 1px solid #be0d37;
  656. border-top-color: #9d0a2d;
  657. border-left-color: #9d0a2d;
  658. background-color: #cc0e3b;
  659. background-image: -webkit-gradient(linear, left top, left bottom, from(#e40f42), to(#cc0e3b));
  660. background-image: -webkit-linear-gradient(top, #e40f42, #cc0e3b);
  661. background-image: -moz-linear-gradient(top, #e40f42, #cc0e3b);
  662. background-image: -o-linear-gradient(top, #e40f42, #cc0e3b);
  663. background-image: linear-gradient(to bottom, #e40f42, #cc0e3b);
  664. }
  665. .button:active,
  666. .button:visited:active {
  667. background-color: #f01d4f;
  668. background-image: -webkit-gradient(linear, left top, left bottom, from(#e40f42), to(#f01d4f));
  669. background-image: -webkit-linear-gradient(top, #e40f42, #f01d4f);
  670. background-image: -moz-linear-gradient(top, #e40f42, #f01d4f);
  671. background-image: -o-linear-gradient(top, #e40f42, #f01d4f);
  672. background-image: linear-gradient(to bottom, #e40f42, #f01d4f);
  673. }
  674. .blue-button,
  675. .blue-button:visited {
  676. border-color: #1472ad;
  677. text-shadow: 0 1px 1px #1472ad;
  678. background-color: #1681c4;
  679. background-image: -webkit-gradient(linear, left top, left bottom, from(#1990db), to(#1681c4));
  680. background-image: -webkit-linear-gradient(top, #1990db, #1681c4);
  681. background-image: -moz-linear-gradient(top, #1990db, #1681c4);
  682. background-image: -o-linear-gradient(top, #1990db, #1681c4);
  683. background-image: linear-gradient(to bottom, #1990db, #1681c4);
  684. -webkit-box-shadow: inset 0 0 3px #59b3ec;
  685. -moz-box-shadow: inset 0 0 3px #59b3ec;
  686. box-shadow: inset 0 0 3px #59b3ec;
  687. }
  688. .blue-button:hover,
  689. .blue-button:visited:hover,
  690. .blue-button:focus,
  691. .blue-button:visited:focus {
  692. border-color: #116396;
  693. background-color: #1472ad;
  694. background-image: -webkit-gradient(linear, left top, left bottom, from(#1784c9), to(#1472ad));
  695. background-image: -webkit-linear-gradient(top, #1784c9, #1472ad);
  696. background-image: -moz-linear-gradient(top, #1784c9, #1472ad);
  697. background-image: -o-linear-gradient(top, #1784c9, #1472ad);
  698. background-image: linear-gradient(to bottom, #1784c9, #1472ad);
  699. }
  700. .blue-button:active,
  701. .blue-button:visited:active {
  702. background-color: #1990db;
  703. background-image: -webkit-gradient(linear, left top, left bottom, from(#1681c4), to(#1990db));
  704. background-image: -webkit-linear-gradient(top, #1681c4, #1990db);
  705. background-image: -moz-linear-gradient(top, #1681c4, #1990db);
  706. background-image: -o-linear-gradient(top, #1681c4, #1990db);
  707. background-image: linear-gradient(to bottom, #1681c4, #1990db);
  708. }
  709. /*
  710. BASE (MOBILE) SIZE
  711. This are the mobile styles. It's what people see on their phones. If
  712. you set a great foundation, you won't need to add too many styles in
  713. the other stylesheets. Remember, keep it light: Speed is Important.
  714. */
  715. /******************************************************************
  716. Site Name:
  717. Author:
  718. Stylesheet: Base Mobile Stylesheet
  719. Be light and don't over style since everything here will be
  720. loaded by mobile devices. You want to keep it as minimal as
  721. possible. This is called at the top of the main stylsheet
  722. and will be used across all viewports.
  723. ------------ MAP ------------
  724. 01. GENERAL STYLES
  725. 02. WORDPRESS BODY CLASSES
  726. 03. LAYOUT & GRID STYLES
  727. 04. LINK STYLES
  728. 05. H1, H2, H3, H4, H5 STYLES
  729. 06. HEADER SYTLES
  730. 07. NAVIGATION STYLES
  731. 08. POSTS & CONTENT STYLES
  732. 09. PAGE NAVI STYLES
  733. 10. COMMENT STYLES
  734. 11. COMMENT FORM STYLES
  735. 12. SIDEBARS & ASIDES
  736. 13. FOOTER STYLES
  737. ******************************************************************/
  738. /*********************
  739. 01. GENERAL STYLES
  740. *********************/
  741. body {
  742. font-family: "Georgia", Cambria, Times New Roman, Times, serif;
  743. font-size: 100%;
  744. line-height: 1.5;
  745. color: #565656;
  746. }
  747. /********************
  748. 02. WORDPRESS BODY CLASSES
  749. style a page via class
  750. ********************/
  751. /* for sites that are read right to left (i.e. hebrew) */
  752. /* home page */
  753. /* blog template page */
  754. /* archive page */
  755. /* date archive page */
  756. /* replace the number to the corresponding page number */
  757. /* search page */
  758. /* search result page */
  759. /* no results search page */
  760. /* individual paged search (i.e. body.search-paged-3) */
  761. /* 404 page */
  762. /* single post page */
  763. /* individual post page by id (i.e. body.postid-73) */
  764. /* individual paged single (i.e. body.single-paged-3) */
  765. /* attatchment page */
  766. /* individual attatchment page (i.e. body.attachmentid-763) */
  767. /* style mime type pages */
  768. /* author page */
  769. /* user nicename (i.e. body.author-samueladams) */
  770. /* paged author archives (i.e. body.author-paged-4) for page 4 */
  771. /* category page */
  772. /* individual category page (i.e. body.category-6) */
  773. /* replace the number to the corresponding page number */
  774. /* tag page */
  775. /* individual tag page (i.e. body.tag-news) */
  776. /* replace the number to the corresponding page number */
  777. /* custom page template page */
  778. /* individual page template (i.e. body.page-template-contact-php */
  779. /* replace the number to the corresponding page number */
  780. /* parent page template */
  781. /* child page template */
  782. /* replace the number to the corresponding page number */
  783. /* if user is logged in */
  784. /* paged items like search results or archives */
  785. /* individual paged (i.e. body.paged-3) */
  786. /*********************
  787. 03. LAYOUT & GRID STYLES
  788. *********************/
  789. .wrap {
  790. width: 96%;
  791. margin: 0 auto;
  792. }
  793. /*********************
  794. 04. LINK STYLES
  795. *********************/
  796. a,
  797. a:visited {
  798. color: #f01d4f;
  799. /* on hover */
  800. /* on click */
  801. /* mobile tap color */
  802. }
  803. a:hover,
  804. a:visited:hover,
  805. a:focus,
  806. a:visited:focus {
  807. color: #d10e3c;
  808. }
  809. a:link,
  810. a:visited:link {
  811. /*
  812. this highlights links on iPhones/iPads.
  813. so it basically works like the :hover selector
  814. for mobile devices.
  815. */
  816. -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  817. }
  818. /******************************************************************
  819. 05. H1, H2, H3, H4, H5 STYLES
  820. ******************************************************************/
  821. h1,
  822. .h1,
  823. h2,
  824. .h2,
  825. h3,
  826. .h3,
  827. h4,
  828. .h4,
  829. h5,
  830. .h5 {
  831. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  832. text-rendering: optimizelegibility;
  833. font-weight: 500;
  834. /*
  835. if you're going to use webfonts, be sure to check your weights
  836. http://css-tricks.com/watch-your-font-weight/
  837. */
  838. /* removing text decoration from all headline links */
  839. }
  840. h1 a,
  841. .h1 a,
  842. h2 a,
  843. .h2 a,
  844. h3 a,
  845. .h3 a,
  846. h4 a,
  847. .h4 a,
  848. h5 a,
  849. .h5 a {
  850. text-decoration: none;
  851. }
  852. h1,
  853. .h1 {
  854. font-size: 2.5em;
  855. line-height: 1.333em;
  856. }
  857. h2,
  858. .h2 {
  859. font-size: 1.75em;
  860. line-height: 1.4em;
  861. margin-bottom: 0.375em;
  862. }
  863. h3,
  864. .h3 {
  865. font-size: 1.125em;
  866. }
  867. h4,
  868. .h4 {
  869. font-size: 1.1em;
  870. font-weight: 700;
  871. }
  872. h5,
  873. .h5 {
  874. font-size: 0.846em;
  875. line-height: 2.09em;
  876. text-transform: uppercase;
  877. letter-spacing: 2px;
  878. }
  879. /*********************
  880. 06. HEADER SYTLES
  881. *********************/
  882. /*********************
  883. 07. NAVIGATION STYLES
  884. *********************/
  885. /*
  886. all navs have a .nav class applied via
  887. the wp_menu function; this is so we can
  888. easily write one group of styles for
  889. the navs on the site so our css is cleaner
  890. and more scalable.
  891. */
  892. .nav {
  893. border: 1px solid #ccc;
  894. border-bottom: 0;
  895. /* end .menu li */
  896. /* highlight current page */
  897. /* end current highlighters */
  898. }
  899. .nav li {
  900. /*
  901. so you really have to rethink your dropdowns for mobile.
  902. you don't want to have it expand too much because the
  903. screen is so small. How you manage your menu should
  904. depend on the project. Here's some great info on it:
  905. http://www.alistapart.com/articles/organizing-mobile/
  906. */
  907. }
  908. .nav li a {
  909. display: block;
  910. text-decoration: none;
  911. padding: 10px 10px;
  912. background-color: #eee;
  913. border-bottom: 1px solid #ccc;
  914. /*
  915. remember this is for mobile ONLY, so there's no need
  916. to even declare hover styles here, you can do it in
  917. the style.scss file where it's relevant. We want to
  918. keep this file as small as possible!
  919. */
  920. }
  921. .nav li ul.sub-menu li a,
  922. .nav li ul.children li a {
  923. padding-left: 30px;
  924. }
  925. /* end .nav */
  926. /*********************
  927. 08. POSTS & CONTENT STYLES
  928. *********************/
  929. #content {
  930. margin-top: 2.2em;
  931. }
  932. /* end .hentry */
  933. /* want to style individual post classes? Booya! */
  934. /* post by id (i.e. post-3) */
  935. /* general post style */
  936. /* general article on a page style */
  937. /* general style on an attatchment */
  938. /* sticky post style */
  939. /* hentry class */
  940. /* style by category (i.e. category-videos) */
  941. /* style by tag (i.e. tag-news) */
  942. /* post meta */
  943. .byline {
  944. color: #999;
  945. }
  946. /* entry content */
  947. .entry-content {
  948. /*
  949. image alignment on a screen this size may be
  950. a bit difficult. It's set to start aligning
  951. and floating images at the next breakpoint,
  952. but it's up to you. Feel free to change it up.
  953. */
  954. }
  955. .entry-content dd {
  956. margin-left: 0;
  957. font-size: 0.9em;
  958. color: #787878;
  959. margin-bottom: 1.5em;
  960. }
  961. .entry-content img {
  962. margin: 0 0 1.5em 0;
  963. max-width: 100%;
  964. height: auto;
  965. }
  966. .entry-content video,
  967. .entry-content object {
  968. max-width: 100%;
  969. height: auto;
  970. }
  971. .entry-content pre {
  972. background: #eee;
  973. border: 1px solid #cecece;
  974. padding: 10px;
  975. }
  976. /* end .entry-content */
  977. .wp-caption {
  978. background: #eee;
  979. padding: 5px;
  980. /* images inside wp-caption */
  981. }
  982. .wp-caption img {
  983. margin-bottom: 0;
  984. width: 100%;
  985. }
  986. .wp-caption p.wp-caption-text {
  987. font-size: 0.85em;
  988. margin: 4px 0 7px;
  989. text-align: center;
  990. }
  991. /* end .wp-caption */
  992. /* image gallery styles */
  993. /* end .gallery */
  994. /* gallery caption styles */
  995. /******************************************************************
  996. 09. PAGE NAVI STYLES
  997. ******************************************************************/
  998. .page-navigation,
  999. .wp-prev-next {
  1000. margin: 1.1em 0 2.2em;
  1001. }
  1002. .bones_page_navi {
  1003. /* current page link */
  1004. /* end .bones_page_navi .bpn-current */
  1005. /* common styles for page-navi links */
  1006. /* remove the bg on end links */
  1007. /* previous link */
  1008. /* next page link */
  1009. /* first page link */
  1010. /* last page link */
  1011. }
  1012. .bones_page_navi li {
  1013. float: left;
  1014. margin-left: 10px;
  1015. }
  1016. .bones_page_navi li a {
  1017. padding: 3px 6px;
  1018. display: block;
  1019. text-decoration: none;
  1020. position: relative;
  1021. }
  1022. .bones_page_navi li a:hover,
  1023. .bones_page_navi li a:focus {
  1024. color: #f01d4f;
  1025. text-decoration: underline;
  1026. }
  1027. .bones_page_navi li.bpn-current {
  1028. padding: 3px 6px;
  1029. border-bottom: 2px solid #f01d4f;
  1030. position: relative;
  1031. }
  1032. .bones_page_navi li.bpn-current a {
  1033. /* hovering on current page link */
  1034. }
  1035. .bones_page_navi li.bpn-prev-link,
  1036. .bones_page_navi li.bpn-next-link {
  1037. font-weight: 700;
  1038. }
  1039. .bones_page_navi li.bpn-prev-link a,
  1040. .bones_page_navi li.bpn-next-link a {
  1041. padding: 0;
  1042. }
  1043. .bones_page_navi li.bpn-prev-link a:hover,
  1044. .bones_page_navi li.bpn-next-link a:hover,
  1045. .bones_page_navi li.bpn-first-page-link a:hover,
  1046. .bones_page_navi li.bpn-last-page-link a:hover {
  1047. background: none;
  1048. }
  1049. /* end .bones_page_navi */
  1050. /* fallback previous & next links */
  1051. .wp-prev-next .prev-link {
  1052. float: left;
  1053. }
  1054. .wp-prev-next .next-link {
  1055. float: right;
  1056. }
  1057. /* end .wp-prev-next */
  1058. /******************************************************************
  1059. 10. COMMENT STYLES
  1060. ******************************************************************/
  1061. /* h3 comment title */
  1062. #comments {
  1063. /* number of comments span */
  1064. }
  1065. .commentlist {
  1066. /* general comment classes */
  1067. /* vcard */
  1068. /* end .commentlist .vcard */
  1069. /* comment meta */
  1070. /* comment content */
  1071. /* end .commentlist .comment_content */
  1072. /* comment reply link */
  1073. /* end .commentlist .comment-reply-link */
  1074. }
  1075. .commentlist li {
  1076. position: relative;
  1077. clear: both;
  1078. overflow: hidden;
  1079. list-style-type: none;
  1080. margin-bottom: 1.5em;
  1081. padding: 0.7335em 10px;
  1082. /* end .commentlist li ul.children */
  1083. }
  1084. .commentlist li:last-child {
  1085. margin-bottom: 0;
  1086. }
  1087. .commentlist li ul.children {
  1088. margin: 0;
  1089. /* variations */
  1090. /* change number for different depth */
  1091. }
  1092. .commentlist li[class*=depth-] {
  1093. margin-top: 1.1em;
  1094. }
  1095. .commentlist li.depth-1 {
  1096. margin-left: 0;
  1097. margin-top: 0;
  1098. }
  1099. .commentlist li:not(.depth-1) {
  1100. margin-right: -10px;
  1101. margin-left: -10px;
  1102. margin-top: 0;
  1103. padding-bottom: 0;
  1104. }
  1105. .commentlist .odd {
  1106. background: #eee;
  1107. }
  1108. .commentlist .even {
  1109. background: #fefefe;
  1110. }
  1111. .commentlist .vcard {
  1112. margin-left: 50px;
  1113. }
  1114. .commentlist .vcard cite.fn {
  1115. font-weight: 700;
  1116. font-style: normal;
  1117. }
  1118. .commentlist .vcard time {
  1119. float: right;
  1120. }
  1121. .commentlist .vcard time a {
  1122. color: #999;
  1123. text-decoration: none;
  1124. }
  1125. .commentlist .vcard time a:hover {
  1126. text-decoration: underline;
  1127. }
  1128. .commentlist .vcard img.avatar {
  1129. position: absolute;
  1130. left: 10px;
  1131. padding: 2px;
  1132. border: 1px solid #cecece;
  1133. background: #fff;
  1134. }
  1135. .commentlist .comment_content {
  1136. margin-left: 50px;
  1137. }
  1138. .commentlist .comment_content p {
  1139. margin: 0.7335em 0 1.5em;
  1140. font-size: 1em;
  1141. line-height: 1.5em;
  1142. }
  1143. .commentlist .comment-reply-link {
  1144. text-decoration: none;
  1145. float: right;
  1146. background: #4598bb;
  1147. padding: 3px 5px;
  1148. color: #fff;
  1149. opacity: 0.65;
  1150. margin-bottom: 10px;
  1151. font-weight: 700;
  1152. font-size: 0.9em;
  1153. }
  1154. .commentlist .comment-reply-link:hover,
  1155. .commentlist .comment-reply-link:focus {
  1156. opacity: 1;
  1157. }
  1158. /* end .commentlist */
  1159. /******************************************************************
  1160. 11. COMMENT FORM STYLES
  1161. ******************************************************************/
  1162. .respond-form {
  1163. margin: 1.5em 10px;
  1164. padding-bottom: 2.2em;
  1165. }
  1166. .respond-form form {
  1167. margin: 0.75em 0;
  1168. }
  1169. .respond-form form li {
  1170. list-style-type: none;
  1171. clear: both;
  1172. margin-bottom: 0.7335em;
  1173. }
  1174. .respond-form form li label,
  1175. .respond-form form li small {
  1176. display: none;
  1177. }
  1178. .respond-form form input[type=text],
  1179. .respond-form form input[type=email],
  1180. .respond-form form input[type=url],
  1181. .respond-form form textarea {
  1182. padding: 3px 6px;
  1183. background: #efefef;
  1184. border: 2px solid #cecece;
  1185. line-height: 1.5em;
  1186. /* form validation */
  1187. }
  1188. .respond-form form input[type=text]:focus,
  1189. .respond-form form input[type=email]:focus,
  1190. .respond-form form input[type=url]:focus,
  1191. .respond-form form textarea:focus {
  1192. background: #fff;
  1193. }
  1194. .respond-form form input[type=text]:invalid,
  1195. .respond-form form input[type=email]:invalid,
  1196. .respond-form form input[type=url]:invalid,
  1197. .respond-form form textarea:invalid {
  1198. outline: none;
  1199. border-color: #fbc2c4;
  1200. background-color: #f6e7eb;
  1201. -webkit-box-shadow: none;
  1202. -moz-box-shadow: none;
  1203. -ms-box-shadow: none;
  1204. box-shadow: none;
  1205. }
  1206. .respond-form form input[type=text],
  1207. .respond-form form input[type=email],
  1208. .respond-form form input[type=url] {
  1209. max-width: 400px;
  1210. min-width: 250px;
  1211. }
  1212. .respond-form form textarea {
  1213. resize: none;
  1214. width: 97.3%;
  1215. height: 150px;
  1216. }
  1217. /* comment submit button */
  1218. /* comment form title */
  1219. #comment-form-title {
  1220. margin: 0 0 1.1em;
  1221. }
  1222. /* cancel comment reply link */
  1223. /* logged in comments */
  1224. /* allowed tags */
  1225. #allowed_tags {
  1226. margin: 1.5em 10px 0.7335em 0;
  1227. }
  1228. /* no comments */
  1229. .nocomments {
  1230. margin: 0 20px 1.1em;
  1231. }
  1232. /*********************
  1233. 12. SIDEBARS & ASIDES
  1234. *********************/
  1235. .widget ul li {
  1236. /* deep nesting */
  1237. }
  1238. /*********************
  1239. 13. FOOTER STYLES
  1240. *********************/
  1241. .footer {
  1242. clear: both;
  1243. }
  1244. /*
  1245. if you checked out the link above:
  1246. http://www.alistapart.com/articles/organizing-mobile/
  1247. you'll want to style the footer nav
  1248. a bit more in-depth. Remember to keep
  1249. it simple because you'll have to
  1250. override these styles for the desktop
  1251. view.
  1252. */
  1253. /* end .footer-links */
  1254. /*
  1255. LARGER MOBILE DEVICES
  1256. This is for devices like the Galaxy Note or something that's
  1257. larger than an iPhone but smaller than a tablet. Let's call them
  1258. tweeners.
  1259. */
  1260. @media only screen and (min-width: 481px) {
  1261. /******************************************************************
  1262. Site Name:
  1263. Author:
  1264. Stylesheet: 481px and Up Stylesheet
  1265. This stylesheet is loaded for larger devices. It's set to
  1266. 481px because at 480px it would load on a landscaped iPhone.
  1267. This isn't ideal because then you would be loading all those
  1268. extra styles on that same mobile connection.
  1269. A word of warning. This size COULD be a larger mobile device,
  1270. so you still want to keep it pretty light and simply expand
  1271. upon your base.less styles.
  1272. ******************************************************************/
  1273. /*********************
  1274. NAVIGATION STYLES
  1275. *********************/
  1276. /* .menu is clearfixed inside mixins.scss */
  1277. .menu {
  1278. /* end .menu ul */
  1279. }
  1280. .menu ul {
  1281. /* end .menu ul li */
  1282. /* highlight current page */
  1283. /* end current highlighters */
  1284. }
  1285. .menu ul li {
  1286. /*
  1287. plan your menus and drop-downs wisely.
  1288. */
  1289. }
  1290. .menu ul li a {
  1291. /*
  1292. you can use hover styles here even though this size
  1293. has the possibility of being a mobile device.
  1294. */
  1295. }
  1296. /* end .menu */
  1297. /*********************
  1298. POSTS & CONTENT STYLES
  1299. *********************/
  1300. /* entry content */
  1301. .entry-content {
  1302. /* at this larger size, we can start to align images */
  1303. }
  1304. .entry-content .alignleft,
  1305. .entry-content img.alignleft {
  1306. margin-right: 1.5em;
  1307. display: inline;
  1308. float: left;
  1309. }
  1310. .entry-content .alignright,
  1311. .entry-content img.alignright {
  1312. margin-left: 1.5em;
  1313. display: inline;
  1314. float: right;
  1315. }
  1316. .entry-content .aligncenter,
  1317. .entry-content img.aligncenter {
  1318. margin-right: auto;
  1319. margin-left: auto;
  1320. display: block;
  1321. clear: both;
  1322. }
  1323. /* end .entry-content */
  1324. /*********************
  1325. FOOTER STYLES
  1326. *********************/
  1327. /*
  1328. check your menus here. do they look good?
  1329. do they need tweaking?
  1330. */
  1331. /* end .footer-links */
  1332. }
  1333. /*
  1334. TABLET & SMALLER LAPTOPS
  1335. This is the average viewing window. So Desktops, Laptops, and
  1336. in general anyone not viewing on a mobile device. Here's where
  1337. you can add resource intensive styles.
  1338. */
  1339. @media only screen and (min-width: 768px) {
  1340. /******************************************************************
  1341. Site Name:
  1342. Author:
  1343. Stylesheet: Grid Stylesheet
  1344. I've seperated the grid so you can swap it out easily. It's
  1345. called at the top the style.less stylesheet.
  1346. There are a ton of grid solutions out there. You should definitely
  1347. experiment with your own. Here are some recommendations:
  1348. http://gridsetapp.com - Love this site. Responsive Grids made easy.
  1349. http://gridpak.com/ - Create your own responsive grid.
  1350. The grid below is a combination of the 1140 grid and Twitter Boostrap.
  1351. I liked 1140 but Boostrap's grid was way more detailed so I merged them
  1352. together, let's see how this works out. If you want to use 1140, the original
  1353. values are commented out on each line.
  1354. ******************************************************************/
  1355. .onecol {
  1356. width: 5.801104972%;
  1357. }
  1358. /* 4.85%; } /* grid_1 */
  1359. .twocol {
  1360. width: 14.364640883%;
  1361. }
  1362. /* 13.45%; } /* grid_2 */
  1363. .threecol {
  1364. width: 22.928176794%;
  1365. }
  1366. /* 22.05%; } /* grid_3 */
  1367. .fourcol {
  1368. width: 31.491712705%;
  1369. }
  1370. /* 30.75%; } /* grid_4 */
  1371. .fivecol {
  1372. width: 40.055248616%;
  1373. }
  1374. /* 39.45%; } /* grid_5 */
  1375. .sixcol {
  1376. width: 48.618784527%;
  1377. }
  1378. /* 48%; } /* grid_6 */
  1379. .sevencol {
  1380. width: 57.182320438000005%;
  1381. }
  1382. /* 56.75%; } /* grid_7 */
  1383. .eightcol {
  1384. width: 65.74585634900001%;
  1385. }
  1386. /* 65.4%; } /* grid_8 */
  1387. .ninecol {
  1388. width: 74.30939226%;
  1389. }
  1390. /* 74.05%; } /* grid_9 */
  1391. .tencol {
  1392. width: 82.87292817100001%;
  1393. }
  1394. /* 82.7%; } /* grid_10 */
  1395. .elevencol {
  1396. width: 91.436464082%;
  1397. }
  1398. /* 91.35%; } /* grid_11 */
  1399. .twelvecol {
  1400. width: 99.999999993%;
  1401. }
  1402. /* 100%; } /* grid_12 */
  1403. .onecol,
  1404. .twocol,
  1405. .threecol,
  1406. .fourcol,
  1407. .fivecol,
  1408. .sixcol,
  1409. .sevencol,
  1410. .eightcol,
  1411. .ninecol,
  1412. .tencol,
  1413. .elevencol,
  1414. .twelvecol {
  1415. position: relative;
  1416. float: left;
  1417. margin-left: 2.762430939%;
  1418. }
  1419. .first {
  1420. margin-left: 0;
  1421. }
  1422. .last {
  1423. float: right;
  1424. }
  1425. /******************************************************************
  1426. Site Name:
  1427. Author:
  1428. Stylesheet: Tablet & Small Desktop Stylesheet
  1429. Here's where you can start getting into the good stuff.
  1430. This size will work on iPads, other tablets, and desktops.
  1431. So you can start working with more styles, background images,
  1432. and other resources. You'll also notice the grid starts to
  1433. come into play. Have fun!
  1434. ******************************************************************/
  1435. /*********************
  1436. GENERAL STYLES
  1437. *********************/
  1438. /*********************
  1439. LAYOUT & GRID STYLES
  1440. *********************/
  1441. .wrap {
  1442. max-width: 1140px;
  1443. }
  1444. /*********************
  1445. HEADER SYTLES
  1446. *********************/
  1447. /*********************
  1448. NAVIGATION STYLES
  1449. *********************/
  1450. .nav {
  1451. background: #eee;
  1452. border: 0;
  1453. /* end .menu ul li */
  1454. /* highlight current page */
  1455. /* end current highlighters */
  1456. }
  1457. .nav li {
  1458. float: left;
  1459. position: relative;
  1460. /*
  1461. plan your menus and drop-downs wisely.
  1462. */
  1463. /* showing sub-menus */
  1464. }
  1465. .nav li a {
  1466. border-bottom: 0;
  1467. /*
  1468. you can use hover styles here even though this size
  1469. has the possibility of being a mobile device.
  1470. */
  1471. }
  1472. .nav li a:hover,
  1473. .nav li a:focus {
  1474. background-color: #dedede;
  1475. }
  1476. .nav li ul.sub-menu,
  1477. .nav li ul.children {
  1478. width: 200px;
  1479. border: 1px solid #ccc;
  1480. border-top: 0;
  1481. position: absolute;
  1482. display: none;
  1483. z-index: 8999;
  1484. /* highlight sub-menu current page */
  1485. }
  1486. .nav li ul.sub-menu li,
  1487. .nav li ul.children li {
  1488. /*
  1489. if you need to go deeper, go nuts
  1490. just remember deeper menus suck
  1491. for usability. k, bai.
  1492. */
  1493. }
  1494. .nav li ul.sub-menu li a,
  1495. .nav li ul.children li a {
  1496. padding-left: 10px;
  1497. border-right: 0;
  1498. display: block;
  1499. width: 180px;
  1500. border-bottom: 1px solid #ccc;
  1501. }
  1502. .nav li ul.sub-menu li:last-child a,
  1503. .nav li ul.children li:last-child a {
  1504. border-bottom: 0;
  1505. }
  1506. .nav li:hover ul {
  1507. top: auto;
  1508. display: block;
  1509. }
  1510. /* end .nav */
  1511. /*********************
  1512. SIDEBARS & ASIDES
  1513. *********************/
  1514. .sidebar {
  1515. margin-top: 2.2em;
  1516. }
  1517. .widgettitle {
  1518. border-bottom: 2px solid #444;
  1519. margin-bottom: 0.75em;
  1520. }
  1521. .widget {
  1522. padding: 0 10px;
  1523. margin: 2.2em 0;
  1524. }
  1525. .widget ul li {
  1526. margin-bottom: 0.75em;
  1527. /* deep nesting */
  1528. }
  1529. .widget ul li ul {
  1530. margin-top: 0.75em;
  1531. padding-left: 1em;
  1532. }
  1533. /* links widget */
  1534. /* meta widget */
  1535. /* pages widget */
  1536. /* recent-posts widget */
  1537. /* archives widget */
  1538. /* tag-cloud widget */
  1539. /* calendar widget */
  1540. /* category widget */
  1541. /* recent-comments widget */
  1542. /* search widget */
  1543. /* text widget */
  1544. /*********************
  1545. FOOTER STYLES
  1546. *********************/
  1547. /*
  1548. you'll probably need to do quite a bit
  1549. of overriding here if you styled them for
  1550. mobile. Make sure to double check these!
  1551. */
  1552. .footer-links ul li {
  1553. /*
  1554. be careful with the depth of your menus.
  1555. it's very rare to have multi-depth menus in
  1556. the footer.
  1557. */
  1558. }
  1559. /* end .footer-links */
  1560. }
  1561. /*
  1562. DESKTOP
  1563. This is the average viewing window. So Desktops, Laptops, and
  1564. in general anyone not viewing on a mobile device. Here's where
  1565. you can add resource intensive styles.
  1566. */
  1567. @media only screen and (min-width: 1030px) {
  1568. /******************************************************************
  1569. Site Name:
  1570. Author:
  1571. Stylesheet: Desktop Stylsheet
  1572. This is the desktop size. It's larger than an iPad so it will only
  1573. be seen on the Desktop.
  1574. ******************************************************************/
  1575. }
  1576. /*
  1577. LARGE VIEWING SIZE
  1578. This is for the larger monitors and possibly full screen viewers.
  1579. */
  1580. @media only screen and (min-width: 1240px) {
  1581. /******************************************************************
  1582. Site Name:
  1583. Author:
  1584. Stylesheet: Super Large Monitor Stylesheet
  1585. You can add some advanced styles here if you like. This kicks in
  1586. on larger screens.
  1587. ******************************************************************/
  1588. }
  1589. /*
  1590. RETINA (2x RESOLUTION DEVICES)
  1591. This applies to the retina iPhone (4s) and iPad (2,3) along with
  1592. other displays with a 2x resolution. You can also create a media
  1593. query for retina AND a certain size if you want. Go Nuts.
  1594. */
  1595. @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  1596. /******************************************************************
  1597. Site Name:
  1598. Author:
  1599. Stylesheet: Retina Screens & Devices Stylesheet
  1600. When handling retina screens you need to make adjustments, especially
  1601. if you're not using font icons. Here you can add them in one neat
  1602. place.
  1603. ******************************************************************/
  1604. /*
  1605. EXAMPLE
  1606. Let's say you have an image and you need to make sure it looks ok
  1607. on retina screens. Let's say we have an icon which dimension are
  1608. 24px x 24px. In your regular stylesheets, it would look something
  1609. like this:
  1610. .icon {
  1611. width: 24px;
  1612. height: 24px;
  1613. background: url(img/test.png) no-repeat;
  1614. }
  1615. For retina screens, we have to make some adjustments, so that image
  1616. doesn't look blurry. So, taking into account the image above and the
  1617. dimensions, this is what we would put in our retina stylesheet:
  1618. .icon {
  1619. background: url(img/test@2x.png) no-repeat;
  1620. background-size: 24px 24px;
  1621. }
  1622. So, you would create the same icon, but at double the resolution, meaning
  1623. it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  1624. (this is pretty standard practice). Set the background image so it matches
  1625. the original dimensions and you are good to go.
  1626. */
  1627. }
  1628. /*
  1629. iPHONE 5 MEDIA QUERY
  1630. Want to get fancy for no good reason? Knock yourself out.
  1631. */
  1632. @media (device-height: 568px) and (-webkit-min-device-pixel-ratio: 2) {
  1633. }
  1634. /*
  1635. PRINT STYLESHEET
  1636. Feel free to customize this. Remember to add things that won't make
  1637. sense to print at the bottom. Things like nav, ads, and forms should
  1638. be set to display none.
  1639. */
  1640. @media print {
  1641. /******************************************************************
  1642. Site Name:
  1643. Author:
  1644. Stylesheet: Print Stylesheet
  1645. This is the print stylesheet. There's probably not a lot
  1646. of reasons to edit this stylesheet. If you want to
  1647. though, go for it.
  1648. ******************************************************************/
  1649. * {
  1650. background: transparent !important;
  1651. color: black !important;
  1652. text-shadow: none !important;
  1653. filter: none !important;
  1654. -ms-filter: none !important;
  1655. }
  1656. a,
  1657. a:visited {
  1658. color: #444 !important;
  1659. text-decoration: underline;
  1660. }
  1661. a:after,
  1662. a:visited:after {
  1663. content: " (" attr(href) ")";
  1664. }
  1665. a abbr[title]:after,
  1666. a:visited abbr[title]:after {
  1667. content: " (" attr(title) ")";
  1668. }
  1669. .ir a:after,
  1670. a[href^="javascript:"]:after,
  1671. a[href^="#"]:after {
  1672. content: "";
  1673. }
  1674. pre,
  1675. blockquote {
  1676. border: 1px solid #999;
  1677. page-break-inside: avoid;
  1678. }
  1679. thead {
  1680. display: table-header-group;
  1681. }
  1682. tr,
  1683. img {
  1684. page-break-inside: avoid;
  1685. }
  1686. img {
  1687. max-width: 100% !important;
  1688. }
  1689. @page {
  1690. margin: 0.5cm;
  1691. }
  1692. p,
  1693. h2,
  1694. h3 {
  1695. orphans: 3;
  1696. widows: 3;
  1697. }
  1698. h2,
  1699. h3 {
  1700. page-break-after: avoid;
  1701. }
  1702. .sidebar,
  1703. .page-navigation,
  1704. .wp-prev-next,
  1705. .respond-form,
  1706. nav {
  1707. display: none;
  1708. }
  1709. }