style.css 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109
  1. /*! Made with Bones: http://themble.com/bones :) */
  2. /******************************************************************
  3. Site Name:
  4. Author:
  5. Stylesheet: Main Stylesheet
  6. Here's where the magic happens. Here, you'll see we are calling in
  7. the separate media queries. The base mobile goes outside any query
  8. and is called at the beginning, after that we call the rest
  9. of the styles inside media queries.
  10. Helpful articles on Sass file organization:
  11. http://thesassway.com/advanced/modular-css-naming-conventions
  12. ******************************************************************/
  13. /*********************
  14. IMPORTING PARTIALS
  15. These files are needed at the beginning so that we establish all
  16. our mixins, functions, and variables that we'll be using across
  17. the whole project.
  18. *********************/
  19. /* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
  20. /* ==========================================================================
  21. HTML5 display definitions
  22. ========================================================================== */
  23. /**
  24. * Correct `block` display not defined in IE 8/9.
  25. */
  26. article,
  27. aside,
  28. details,
  29. figcaption,
  30. figure,
  31. footer,
  32. header,
  33. hgroup,
  34. main,
  35. nav,
  36. section,
  37. summary {
  38. display: block; }
  39. /**
  40. * Correct `inline-block` display not defined in IE 8/9.
  41. */
  42. audio,
  43. canvas,
  44. video {
  45. display: inline-block; }
  46. /**
  47. * Prevent modern browsers from displaying `audio` without controls.
  48. * Remove excess height in iOS 5 devices.
  49. */
  50. audio:not([controls]) {
  51. display: none;
  52. height: 0; }
  53. /**
  54. * Address `[hidden]` styling not present in IE 8/9.
  55. * Hide the `template` element in IE, Safari, and Firefox < 22.
  56. */
  57. [hidden],
  58. template {
  59. display: none; }
  60. /* ==========================================================================
  61. Base
  62. ========================================================================== */
  63. /**
  64. * 1. Set default font family to sans-serif.
  65. * 2. Prevent iOS text size adjust after orientation change, without disabling
  66. * user zoom.
  67. */
  68. html {
  69. font-family: sans-serif;
  70. /* 1 */
  71. -ms-text-size-adjust: 100%;
  72. /* 2 */
  73. -webkit-text-size-adjust: 100%;
  74. /* 2 */ }
  75. /**
  76. * Remove default margin.
  77. */
  78. body {
  79. margin: 0; }
  80. /* ==========================================================================
  81. Links
  82. ========================================================================== */
  83. /**
  84. * Remove the gray background color from active links in IE 10.
  85. */
  86. a {
  87. background: transparent; }
  88. /**
  89. * Address `outline` inconsistency between Chrome and other browsers.
  90. */
  91. a:focus {
  92. outline: thin dotted; }
  93. /**
  94. * Improve readability when focused and also mouse hovered in all browsers.
  95. */
  96. a:active,
  97. a:hover {
  98. outline: 0; }
  99. /* ==========================================================================
  100. Typography
  101. ========================================================================== */
  102. /**
  103. * Address variable `h1` font-size and margin within `section` and `article`
  104. * contexts in Firefox 4+, Safari 5, and Chrome.
  105. */
  106. h1 {
  107. font-size: 2em;
  108. margin: 0.67em 0; }
  109. /**
  110. * Address styling not present in IE 8/9, Safari 5, and Chrome.
  111. */
  112. abbr[title] {
  113. border-bottom: 1px dotted; }
  114. /**
  115. * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
  116. */
  117. b,
  118. strong,
  119. .strong {
  120. font-weight: bold; }
  121. /**
  122. * Address styling not present in Safari 5 and Chrome.
  123. */
  124. dfn,
  125. em,
  126. .em {
  127. font-style: italic; }
  128. /**
  129. * Address differences between Firefox and other browsers.
  130. */
  131. hr {
  132. -moz-box-sizing: content-box;
  133. box-sizing: content-box;
  134. height: 0; }
  135. /*
  136. * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
  137. */
  138. p {
  139. -webkit-hyphens: auto;
  140. -epub-hyphens: auto;
  141. -moz-hyphens: auto;
  142. hyphens: auto; }
  143. /*
  144. * Addresses margins set differently in IE6/7.
  145. */
  146. pre {
  147. margin: 0; }
  148. /**
  149. * Correct font family set oddly in Safari 5 and Chrome.
  150. */
  151. code,
  152. kbd,
  153. pre,
  154. samp {
  155. font-family: monospace, serif;
  156. font-size: 1em; }
  157. /**
  158. * Improve readability of pre-formatted text in all browsers.
  159. */
  160. pre {
  161. white-space: pre-wrap; }
  162. /**
  163. * Set consistent quote types.
  164. */
  165. q {
  166. quotes: "\201C" "\201D" "\2018" "\2019"; }
  167. /**
  168. * Address inconsistent and variable font size in all browsers.
  169. */
  170. q:before,
  171. q:after {
  172. content: '';
  173. content: none; }
  174. small, .small {
  175. font-size: 75%; }
  176. /**
  177. * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  178. */
  179. sub,
  180. sup {
  181. font-size: 75%;
  182. line-height: 0;
  183. position: relative;
  184. vertical-align: baseline; }
  185. sup {
  186. top: -0.5em; }
  187. sub {
  188. bottom: -0.25em; }
  189. /* ==========================================================================
  190. Lists
  191. ========================================================================== */
  192. /*
  193. * Addresses margins set differently in IE6/7.
  194. */
  195. dl,
  196. menu,
  197. ol,
  198. ul {
  199. margin: 1em 0; }
  200. dd {
  201. margin: 0; }
  202. /*
  203. * Addresses paddings set differently in IE6/7.
  204. */
  205. menu {
  206. padding: 0 0 0 40px; }
  207. ol,
  208. ul {
  209. padding: 0;
  210. list-style-type: none; }
  211. /*
  212. * Corrects list images handled incorrectly in IE7.
  213. */
  214. nav ul,
  215. nav ol {
  216. list-style: none;
  217. list-style-image: none; }
  218. /* ==========================================================================
  219. Embedded content
  220. ========================================================================== */
  221. /**
  222. * Remove border when inside `a` element in IE 8/9.
  223. */
  224. img {
  225. border: 0; }
  226. /**
  227. * Correct overflow displayed oddly in IE 9.
  228. */
  229. svg:not(:root) {
  230. overflow: hidden; }
  231. /* ==========================================================================
  232. Figures
  233. ========================================================================== */
  234. /**
  235. * Address margin not present in IE 8/9 and Safari 5.
  236. */
  237. figure {
  238. margin: 0; }
  239. /* ==========================================================================
  240. Forms
  241. ========================================================================== */
  242. /**
  243. * Define consistent border, margin, and padding.
  244. */
  245. fieldset {
  246. border: 1px solid #c0c0c0;
  247. margin: 0 2px;
  248. padding: 0.35em 0.625em 0.75em; }
  249. /**
  250. * 1. Correct `color` not being inherited in IE 8/9.
  251. * 2. Remove padding so people aren't caught out if they zero out fieldsets.
  252. */
  253. legend {
  254. border: 0;
  255. /* 1 */
  256. padding: 0;
  257. /* 2 */ }
  258. /**
  259. * 1. Correct font family not being inherited in all browsers.
  260. * 2. Correct font size not being inherited in all browsers.
  261. * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
  262. */
  263. button,
  264. input,
  265. select,
  266. textarea {
  267. font-family: inherit;
  268. /* 1 */
  269. font-size: 100%;
  270. /* 2 */
  271. margin: 0;
  272. /* 3 */ }
  273. /**
  274. * Address Firefox 4+ setting `line-height` on `input` using `!important` in
  275. * the UA stylesheet.
  276. */
  277. button,
  278. input {
  279. line-height: normal; }
  280. /**
  281. * Address inconsistent `text-transform` inheritance for `button` and `select`.
  282. * All other form control elements do not inherit `text-transform` values.
  283. * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
  284. * Correct `select` style inheritance in Firefox 4+ and Opera.
  285. */
  286. button,
  287. select {
  288. text-transform: none; }
  289. /**
  290. * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  291. * and `video` controls.
  292. * 2. Correct inability to style clickable `input` types in iOS.
  293. * 3. Improve usability and consistency of cursor style between image-type
  294. * `input` and others.
  295. */
  296. button,
  297. html input[type="button"],
  298. input[type="reset"],
  299. input[type="submit"] {
  300. -webkit-appearance: button;
  301. /* 2 */
  302. cursor: pointer;
  303. /* 3 */ }
  304. /**
  305. * Re-set default cursor for disabled elements.
  306. */
  307. button[disabled],
  308. html input[disabled] {
  309. cursor: default; }
  310. /**
  311. * 1. Address box sizing set to `content-box` in IE 8/9/10.
  312. * 2. Remove excess padding in IE 8/9/10.
  313. */
  314. input[type="checkbox"],
  315. input[type="radio"] {
  316. box-sizing: border-box;
  317. /* 1 */
  318. padding: 0;
  319. /* 2 */ }
  320. /**
  321. * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
  322. * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
  323. * (include `-moz` to future-proof).
  324. */
  325. input[type="search"] {
  326. -webkit-appearance: textfield;
  327. /* 1 */
  328. -moz-box-sizing: content-box;
  329. -webkit-box-sizing: content-box;
  330. /* 2 */
  331. box-sizing: content-box; }
  332. /**
  333. * Remove inner padding and search cancel button in Safari 5 and Chrome
  334. * on OS X.
  335. */
  336. input[type="search"]::-webkit-search-cancel-button,
  337. input[type="search"]::-webkit-search-decoration {
  338. -webkit-appearance: none; }
  339. /**
  340. * Remove inner padding and border in Firefox 4+.
  341. */
  342. button::-moz-focus-inner,
  343. input::-moz-focus-inner {
  344. border: 0;
  345. padding: 0; }
  346. /**
  347. * 1. Remove default vertical scrollbar in IE 8/9.
  348. * 2. Improve readability and alignment in all browsers.
  349. */
  350. textarea {
  351. overflow: auto;
  352. /* 1 */
  353. vertical-align: top;
  354. /* 2 */ }
  355. /* ==========================================================================
  356. Tables
  357. ========================================================================== */
  358. /**
  359. * Remove most spacing between table cells.
  360. */
  361. table {
  362. border-collapse: collapse;
  363. border-spacing: 0; }
  364. * {
  365. -webkit-box-sizing: border-box;
  366. -moz-box-sizing: border-box;
  367. box-sizing: border-box; }
  368. .image-replacement,
  369. .ir {
  370. text-indent: 100%;
  371. white-space: nowrap;
  372. overflow: hidden; }
  373. .clearfix, .cf, .comment-respond {
  374. zoom: 1; }
  375. .clearfix:before, .clearfix:after, .cf:before, .comment-respond:before, .cf:after, .comment-respond:after {
  376. content: "";
  377. display: table; }
  378. .clearfix:after, .cf:after, .comment-respond:after {
  379. clear: both; }
  380. /*
  381. use the best ampersand
  382. http://simplebits.com/notebook/2008/08/14/ampersands-2/
  383. */
  384. span.amp {
  385. font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  386. font-style: italic; }
  387. /******************************************************************
  388. Site Name:
  389. Author:
  390. Stylesheet: Variables
  391. Here is where we declare all our variables like colors, fonts,
  392. base values, and defaults. We want to make sure this file ONLY
  393. contains variables that way our files don't get all messy.
  394. No one likes a mess.
  395. ******************************************************************/
  396. /*********************
  397. COLORS
  398. Need help w/ choosing your colors? Try this site out:
  399. http://0to255.com/
  400. *********************/
  401. /*
  402. Here's a great tutorial on how to
  403. use color variables properly:
  404. http://sachagreif.com/sass-color-variables/
  405. */
  406. /******************************************************************
  407. Site Name:
  408. Author:
  409. Stylesheet: Typography
  410. Need to import a font or set of icons for your site? Drop them in
  411. here or just use this to establish your typographical grid. Or not.
  412. Do whatever you want to...GOSH!
  413. Helpful Articles:
  414. http://trentwalton.com/2012/06/19/fluid-type/
  415. http://ia.net/blog/responsive-typography-the-basics/
  416. http://alistapart.com/column/responsive-typography-is-a-physical-discipline
  417. ******************************************************************/
  418. /*********************
  419. FONT FACE (IN YOUR FACE)
  420. *********************/
  421. /* To embed your own fonts, use this syntax
  422. and place your fonts inside the
  423. library/fonts folder. For more information
  424. on embedding fonts, go to:
  425. http://www.fontsquirrel.com/
  426. Be sure to remove the comment brackets.
  427. */
  428. /* @font-face {
  429. font-family: 'Font Name';
  430. src: url('library/fonts/font-name.eot');
  431. src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
  432. url('library/fonts/font-name.woff') format('woff'),
  433. url('library/fonts/font-name.ttf') format('truetype'),
  434. url('library/fonts/font-name.svg#font-name') format('svg');
  435. font-weight: normal;
  436. font-style: normal;
  437. }
  438. */
  439. /*
  440. The following is based of Typebase:
  441. https://github.com/devinhunt/typebase.css
  442. I've edited it a bit, but it's a nice starting point.
  443. */
  444. /*
  445. i imported this one in the functions file so bones would look sweet.
  446. don't forget to remove it for your site.
  447. */
  448. /*
  449. some nice typographical defaults
  450. more here: http://www.newnet-soft.com/blog/csstypography
  451. */
  452. p {
  453. -ms-word-break: break-all;
  454. -ms-word-wrap: break-all;
  455. word-break: break-word;
  456. word-break: break-word;
  457. -webkit-hyphens: auto;
  458. -moz-hyphens: auto;
  459. hyphens: auto;
  460. -webkit-hyphenate-before: 2;
  461. -webkit-hyphenate-after: 3;
  462. hyphenate-lines: 3;
  463. -webkit-font-feature-settings: "liga", "dlig";
  464. -moz-font-feature-settings: "liga=1, dlig=1";
  465. -ms-font-feature-settings: "liga", "dlig";
  466. -o-font-feature-settings: "liga", "dlig";
  467. font-feature-settings: "liga", "dlig"; }
  468. /******************************************************************
  469. Site Name:
  470. Author:
  471. Stylesheet: Sass Functions
  472. You can do a lot of really cool things in Sass. Functions help you
  473. make repeated actions a lot easier. They are really similar to mixins,
  474. but can be used for so much more.
  475. Anyway, keep them all in here so it's easier to find when you're
  476. looking for one.
  477. For more info on functions, go here:
  478. http://sass-lang.com/documentation/Sass/Script/Functions.html
  479. ******************************************************************/
  480. /*********************
  481. COLOR FUNCTIONS
  482. These are helpful when you're working
  483. with shadows and such things. It's essentially
  484. a quicker way to write RGBA.
  485. Example:
  486. box-shadow: 0 0 4px black(0.3);
  487. compiles to:
  488. box-shadow: 0 0 4px rgba(0,0,0,0.3);
  489. *********************/
  490. /*********************
  491. RESPONSIVE HELPER FUNCTION
  492. If you're creating a responsive site, then
  493. you've probably already read
  494. Responsive Web Design: http://www.abookapart.com/products/responsive-web-design
  495. Here's a nice little helper function for calculating
  496. target / context
  497. as mentioned in that book.
  498. Example:
  499. width: cp(650px, 1000px);
  500. or
  501. width: calc-percent(650px, 1000px);
  502. both compile to:
  503. width: 65%;
  504. *********************/
  505. /******************************************************************
  506. Site Name:
  507. Author:
  508. Stylesheet: Mixins Stylesheet
  509. This is where you can take advantage of Sass' great features: Mixins.
  510. I won't go in-depth on how they work exactly,
  511. there are a few articles below that will help do that. What I will
  512. tell you is that this will help speed up simple changes like
  513. changing a color or adding CSS3 techniques gradients.
  514. A WORD OF WARNING: It's very easy to overdo it here. Be careful and
  515. remember less is more.
  516. Helpful:
  517. http://sachagreif.com/useful-sass-mixins/
  518. http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
  519. http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/
  520. ******************************************************************/
  521. /*********************
  522. TRANSITION
  523. *********************/
  524. /*
  525. I totally rewrote this to be cleaner and easier to use.
  526. You'll need to be using Sass 3.2+ for these to work.
  527. Thanks to @anthonyshort for the inspiration on these.
  528. USAGE: @include transition(all 0.2s ease-in-out);
  529. */
  530. /*********************
  531. CSS3 GRADIENTS
  532. Be careful with these since they can
  533. really slow down your CSS. Don't overdo it.
  534. *********************/
  535. /* @include css-gradient(#dfdfdf,#f8f8f8); */
  536. /*********************
  537. BOX SIZING
  538. *********************/
  539. /* @include box-sizing(border-box); */
  540. /* NOTE: value of "padding-box" is only supported in Gecko. So
  541. probably best not to use it. I mean, were you going to anyway? */
  542. /******************************************************************
  543. Site Name:
  544. Author:
  545. Stylesheet: Grid Stylesheet
  546. I've seperated the grid so you can swap it out easily. It's
  547. called at the top the style.scss stylesheet.
  548. There are a ton of grid solutions out there. You should definitely
  549. experiment with your own. Here are some recommendations:
  550. http://gridsetapp.com - Love this site. Responsive Grids made easy.
  551. http://susy.oddbird.net/ - Grids using Compass. Very elegant.
  552. http://gridpak.com/ - Create your own responsive grid.
  553. https://github.com/dope/lemonade - Neat lightweight grid.
  554. The grid below is a custom built thingy I modeled a bit after
  555. Gridset. It's VERY basic and probably shouldn't be used on
  556. your client projects. The idea is you learn how to roll your
  557. own grids. It's better in the long run and allows you full control
  558. over your project's layout.
  559. ******************************************************************/
  560. .last-col {
  561. float: right;
  562. padding-right: 0; }
  563. /*
  564. Mobile Grid Styles
  565. These are the widths for the mobile grid.
  566. There are four types, but you can add or customize
  567. them however you see fit.
  568. */
  569. @media (max-width: 767px) {
  570. .m-all {
  571. float: left;
  572. padding-right: 0.75em;
  573. width: 100%; }
  574. .m-1of2 {
  575. float: left;
  576. padding-right: 0.75em;
  577. width: 50%; }
  578. .m-1of3 {
  579. float: left;
  580. padding-right: 0.75em;
  581. width: 33.33%; }
  582. .m-2of3 {
  583. float: left;
  584. padding-right: 0.75em;
  585. width: 66.66%; }
  586. .m-1of4 {
  587. float: left;
  588. padding-right: 0.75em;
  589. width: 25%; }
  590. .m-3of4 {
  591. float: left;
  592. padding-right: 0.75em;
  593. width: 75%; } }
  594. /* Portrait tablet to landscape */
  595. @media (min-width: 768px) and (max-width: 1029px) {
  596. .t-all {
  597. float: left;
  598. padding-right: 0.75em;
  599. width: 100%; }
  600. .t-1of2 {
  601. float: left;
  602. padding-right: 0.75em;
  603. width: 50%; }
  604. .t-1of3 {
  605. float: left;
  606. padding-right: 0.75em;
  607. width: 33.33%; }
  608. .t-2of3 {
  609. float: left;
  610. padding-right: 0.75em;
  611. width: 66.66%; }
  612. .t-1of4 {
  613. float: left;
  614. padding-right: 0.75em;
  615. width: 25%; }
  616. .t-3of4 {
  617. float: left;
  618. padding-right: 0.75em;
  619. width: 75%; }
  620. .t-1of5 {
  621. float: left;
  622. padding-right: 0.75em;
  623. width: 20%; }
  624. .t-2of5 {
  625. float: left;
  626. padding-right: 0.75em;
  627. width: 40%; }
  628. .t-3of5 {
  629. float: left;
  630. padding-right: 0.75em;
  631. width: 60%; }
  632. .t-4of5 {
  633. float: left;
  634. padding-right: 0.75em;
  635. width: 80%; } }
  636. /* Landscape to small desktop */
  637. @media (min-width: 1030px) {
  638. .d-all {
  639. float: left;
  640. padding-right: 0.75em;
  641. width: 100%; }
  642. .d-1of2 {
  643. float: left;
  644. padding-right: 0.75em;
  645. width: 50%; }
  646. .d-1of3 {
  647. float: left;
  648. padding-right: 0.75em;
  649. width: 33.33%; }
  650. .d-2of3 {
  651. float: left;
  652. padding-right: 0.75em;
  653. width: 66.66%; }
  654. .d-1of4 {
  655. float: left;
  656. padding-right: 0.75em;
  657. width: 25%; }
  658. .d-3of4 {
  659. float: left;
  660. padding-right: 0.75em;
  661. width: 75%; }
  662. .d-1of5 {
  663. float: left;
  664. padding-right: 0.75em;
  665. width: 20%; }
  666. .d-2of5 {
  667. float: left;
  668. padding-right: 0.75em;
  669. width: 40%; }
  670. .d-3of5 {
  671. float: left;
  672. padding-right: 0.75em;
  673. width: 60%; }
  674. .d-4of5 {
  675. float: left;
  676. padding-right: 0.75em;
  677. width: 80%; }
  678. .d-1of6 {
  679. float: left;
  680. padding-right: 0.75em;
  681. width: 16.6666666667%; }
  682. .d-1of7 {
  683. float: left;
  684. padding-right: 0.75em;
  685. width: 14.2857142857%; }
  686. .d-2of7 {
  687. float: left;
  688. padding-right: 0.75em;
  689. width: 28.5714286%; }
  690. .d-3of7 {
  691. float: left;
  692. padding-right: 0.75em;
  693. width: 42.8571429%; }
  694. .d-4of7 {
  695. float: left;
  696. padding-right: 0.75em;
  697. width: 57.1428572%; }
  698. .d-5of7 {
  699. float: left;
  700. padding-right: 0.75em;
  701. width: 71.4285715%; }
  702. .d-6of7 {
  703. float: left;
  704. padding-right: 0.75em;
  705. width: 85.7142857%; }
  706. .d-1of8 {
  707. float: left;
  708. padding-right: 0.75em;
  709. width: 12.5%; }
  710. .d-1of9 {
  711. float: left;
  712. padding-right: 0.75em;
  713. width: 11.1111111111%; }
  714. .d-1of10 {
  715. float: left;
  716. padding-right: 0.75em;
  717. width: 10%; }
  718. .d-1of11 {
  719. float: left;
  720. padding-right: 0.75em;
  721. width: 9.09090909091%; }
  722. .d-1of12 {
  723. float: left;
  724. padding-right: 0.75em;
  725. width: 8.33%; } }
  726. /*********************
  727. IMPORTING MODULES
  728. Modules are reusable blocks or elements we use throughout the project.
  729. We can break them up as much as we want or just keep them all in one.
  730. I mean, you can do whatever you want. The world is your oyster. Unless
  731. you hate oysters, then the world is your peanut butter & jelly sandwich.
  732. *********************/
  733. /******************************************************************
  734. Site Name:
  735. Author:
  736. Stylesheet: Alert Styles
  737. If you want to use these alerts in your design, you can. If not,
  738. you can just remove this stylesheet.
  739. ******************************************************************/
  740. .alert-help, .alert-info, .alert-error, .alert-success {
  741. margin: 10px;
  742. padding: 5px 18px;
  743. border: 1px solid; }
  744. .alert-help {
  745. border-color: #e8dc59;
  746. background: #ebe16f; }
  747. .alert-info {
  748. border-color: #bfe4f4;
  749. background: #d5edf8; }
  750. .alert-error {
  751. border-color: #f8cdce;
  752. background: #fbe3e4; }
  753. .alert-success {
  754. border-color: #deeaae;
  755. background: #e6efc2; }
  756. /******************************************************************
  757. Site Name:
  758. Author:
  759. Stylesheet: Button Styles
  760. Buttons are a pretty important part of your site's style, so it's
  761. important to have a consistent baseline for them. Use this stylesheet
  762. to create all kinds of buttons.
  763. Helpful Links:
  764. http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/
  765. ******************************************************************/
  766. /*********************
  767. BUTTON DEFAULTS
  768. We're gonna use a placeholder selector here
  769. so we can use common styles. We then use this
  770. to load up the defaults in all our buttons.
  771. Here's a quick video to show how it works:
  772. http://www.youtube.com/watch?v=hwdVpKiJzac
  773. *********************/
  774. .blue-btn, .comment-reply-link, #submit {
  775. display: inline-block;
  776. position: relative;
  777. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  778. text-decoration: none;
  779. color: white;
  780. font-size: 0.9em;
  781. font-size: 34px;
  782. line-height: 34px;
  783. font-weight: normal;
  784. padding: 0 24px;
  785. border-radius: 4px;
  786. border: 0;
  787. cursor: pointer;
  788. -webkit-transition: background-color 0.14s ease-in-out;
  789. transition: background-color 0.14s ease-in-out; }
  790. .blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
  791. color: white;
  792. text-decoration: none; }
  793. .blue-btn:active, .comment-reply-link:active, #submit:active {
  794. top: 1px; }
  795. /*
  796. An example button.
  797. You can use this example if you want. Just replace all the variables
  798. and it will create a button dependant on those variables.
  799. */
  800. .blue-btn, .comment-reply-link, #submit {
  801. background-color: #2980b9; }
  802. .blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
  803. background-color: #2574a8; }
  804. .blue-btn:active, .comment-reply-link:active, #submit:active {
  805. background-color: #2472a4; }
  806. /******************************************************************
  807. Site Name:
  808. Author:
  809. Stylesheet: Form Styles
  810. We put all the form and button styles in here to setup a consistent
  811. look. If we need to customize them, we can do this in the main
  812. stylesheets and just override them. Easy Peasy.
  813. You're gonna see a few data-uri thingies down there. If you're not
  814. sure what they are, check this link out:
  815. http://css-tricks.com/data-uris/
  816. If you want to create your own, use this helpful link:
  817. http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/
  818. ******************************************************************/
  819. /*********************
  820. INPUTS
  821. *********************/
  822. input[type="text"],
  823. input[type="password"],
  824. input[type="datetime"],
  825. input[type="datetime-local"],
  826. input[type="date"],
  827. input[type="month"],
  828. input[type="time"],
  829. input[type="week"],
  830. input[type="number"],
  831. input[type="email"],
  832. input[type="url"],
  833. input[type="search"],
  834. input[type="tel"],
  835. input[type="color"],
  836. select,
  837. textarea,
  838. .field {
  839. display: block;
  840. height: 40px;
  841. line-height: 40px;
  842. padding: 0 12px;
  843. margin-bottom: 14px;
  844. font-size: 1em;
  845. color: #5c6b80;
  846. border-radius: 3px;
  847. vertical-align: middle;
  848. box-shadow: none;
  849. border: 0;
  850. width: 100%;
  851. max-width: 400px;
  852. font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  853. background-color: #eaedf2;
  854. -webkit-transition: background-color 0.24s ease-in-out;
  855. transition: background-color 0.24s ease-in-out; }
  856. input[type="text"]:focus, input[type="text"]:active,
  857. input[type="password"]:focus,
  858. input[type="password"]:active,
  859. input[type="datetime"]:focus,
  860. input[type="datetime"]:active,
  861. input[type="datetime-local"]:focus,
  862. input[type="datetime-local"]:active,
  863. input[type="date"]:focus,
  864. input[type="date"]:active,
  865. input[type="month"]:focus,
  866. input[type="month"]:active,
  867. input[type="time"]:focus,
  868. input[type="time"]:active,
  869. input[type="week"]:focus,
  870. input[type="week"]:active,
  871. input[type="number"]:focus,
  872. input[type="number"]:active,
  873. input[type="email"]:focus,
  874. input[type="email"]:active,
  875. input[type="url"]:focus,
  876. input[type="url"]:active,
  877. input[type="search"]:focus,
  878. input[type="search"]:active,
  879. input[type="tel"]:focus,
  880. input[type="tel"]:active,
  881. input[type="color"]:focus,
  882. input[type="color"]:active,
  883. select:focus,
  884. select:active,
  885. textarea:focus,
  886. textarea:active,
  887. .field:focus,
  888. .field:active {
  889. background-color: #f7f8fa; }
  890. input[type="text"].error, input[type="text"].is-invalid,
  891. input[type="password"].error,
  892. input[type="password"].is-invalid,
  893. input[type="datetime"].error,
  894. input[type="datetime"].is-invalid,
  895. input[type="datetime-local"].error,
  896. input[type="datetime-local"].is-invalid,
  897. input[type="date"].error,
  898. input[type="date"].is-invalid,
  899. input[type="month"].error,
  900. input[type="month"].is-invalid,
  901. input[type="time"].error,
  902. input[type="time"].is-invalid,
  903. input[type="week"].error,
  904. input[type="week"].is-invalid,
  905. input[type="number"].error,
  906. input[type="number"].is-invalid,
  907. input[type="email"].error,
  908. input[type="email"].is-invalid,
  909. input[type="url"].error,
  910. input[type="url"].is-invalid,
  911. input[type="search"].error,
  912. input[type="search"].is-invalid,
  913. input[type="tel"].error,
  914. input[type="tel"].is-invalid,
  915. input[type="color"].error,
  916. input[type="color"].is-invalid,
  917. select.error,
  918. select.is-invalid,
  919. textarea.error,
  920. textarea.is-invalid,
  921. .field.error,
  922. .field.is-invalid {
  923. color: #fbe3e4;
  924. border-color: #fbe3e4;
  925. background-color: white;
  926. background-position: 99% center;
  927. background-repeat: no-repeat;
  928. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  929. outline-color: #fbe3e4; }
  930. input[type="text"].success, input[type="text"].is-valid,
  931. input[type="password"].success,
  932. input[type="password"].is-valid,
  933. input[type="datetime"].success,
  934. input[type="datetime"].is-valid,
  935. input[type="datetime-local"].success,
  936. input[type="datetime-local"].is-valid,
  937. input[type="date"].success,
  938. input[type="date"].is-valid,
  939. input[type="month"].success,
  940. input[type="month"].is-valid,
  941. input[type="time"].success,
  942. input[type="time"].is-valid,
  943. input[type="week"].success,
  944. input[type="week"].is-valid,
  945. input[type="number"].success,
  946. input[type="number"].is-valid,
  947. input[type="email"].success,
  948. input[type="email"].is-valid,
  949. input[type="url"].success,
  950. input[type="url"].is-valid,
  951. input[type="search"].success,
  952. input[type="search"].is-valid,
  953. input[type="tel"].success,
  954. input[type="tel"].is-valid,
  955. input[type="color"].success,
  956. input[type="color"].is-valid,
  957. select.success,
  958. select.is-valid,
  959. textarea.success,
  960. textarea.is-valid,
  961. .field.success,
  962. .field.is-valid {
  963. color: #e6efc2;
  964. border-color: #e6efc2;
  965. background-color: white;
  966. background-position: 99% center;
  967. background-repeat: no-repeat;
  968. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  969. outline-color: #e6efc2; }
  970. input[type="text"][disabled], input[type="text"].is-disabled,
  971. input[type="password"][disabled],
  972. input[type="password"].is-disabled,
  973. input[type="datetime"][disabled],
  974. input[type="datetime"].is-disabled,
  975. input[type="datetime-local"][disabled],
  976. input[type="datetime-local"].is-disabled,
  977. input[type="date"][disabled],
  978. input[type="date"].is-disabled,
  979. input[type="month"][disabled],
  980. input[type="month"].is-disabled,
  981. input[type="time"][disabled],
  982. input[type="time"].is-disabled,
  983. input[type="week"][disabled],
  984. input[type="week"].is-disabled,
  985. input[type="number"][disabled],
  986. input[type="number"].is-disabled,
  987. input[type="email"][disabled],
  988. input[type="email"].is-disabled,
  989. input[type="url"][disabled],
  990. input[type="url"].is-disabled,
  991. input[type="search"][disabled],
  992. input[type="search"].is-disabled,
  993. input[type="tel"][disabled],
  994. input[type="tel"].is-disabled,
  995. input[type="color"][disabled],
  996. input[type="color"].is-disabled,
  997. select[disabled],
  998. select.is-disabled,
  999. textarea[disabled],
  1000. textarea.is-disabled,
  1001. .field[disabled],
  1002. .field.is-disabled {
  1003. cursor: not-allowed;
  1004. border-color: #cfcfcf;
  1005. opacity: 0.6; }
  1006. input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
  1007. input[type="password"][disabled]:focus,
  1008. input[type="password"][disabled]:active,
  1009. input[type="password"].is-disabled:focus,
  1010. input[type="password"].is-disabled:active,
  1011. input[type="datetime"][disabled]:focus,
  1012. input[type="datetime"][disabled]:active,
  1013. input[type="datetime"].is-disabled:focus,
  1014. input[type="datetime"].is-disabled:active,
  1015. input[type="datetime-local"][disabled]:focus,
  1016. input[type="datetime-local"][disabled]:active,
  1017. input[type="datetime-local"].is-disabled:focus,
  1018. input[type="datetime-local"].is-disabled:active,
  1019. input[type="date"][disabled]:focus,
  1020. input[type="date"][disabled]:active,
  1021. input[type="date"].is-disabled:focus,
  1022. input[type="date"].is-disabled:active,
  1023. input[type="month"][disabled]:focus,
  1024. input[type="month"][disabled]:active,
  1025. input[type="month"].is-disabled:focus,
  1026. input[type="month"].is-disabled:active,
  1027. input[type="time"][disabled]:focus,
  1028. input[type="time"][disabled]:active,
  1029. input[type="time"].is-disabled:focus,
  1030. input[type="time"].is-disabled:active,
  1031. input[type="week"][disabled]:focus,
  1032. input[type="week"][disabled]:active,
  1033. input[type="week"].is-disabled:focus,
  1034. input[type="week"].is-disabled:active,
  1035. input[type="number"][disabled]:focus,
  1036. input[type="number"][disabled]:active,
  1037. input[type="number"].is-disabled:focus,
  1038. input[type="number"].is-disabled:active,
  1039. input[type="email"][disabled]:focus,
  1040. input[type="email"][disabled]:active,
  1041. input[type="email"].is-disabled:focus,
  1042. input[type="email"].is-disabled:active,
  1043. input[type="url"][disabled]:focus,
  1044. input[type="url"][disabled]:active,
  1045. input[type="url"].is-disabled:focus,
  1046. input[type="url"].is-disabled:active,
  1047. input[type="search"][disabled]:focus,
  1048. input[type="search"][disabled]:active,
  1049. input[type="search"].is-disabled:focus,
  1050. input[type="search"].is-disabled:active,
  1051. input[type="tel"][disabled]:focus,
  1052. input[type="tel"][disabled]:active,
  1053. input[type="tel"].is-disabled:focus,
  1054. input[type="tel"].is-disabled:active,
  1055. input[type="color"][disabled]:focus,
  1056. input[type="color"][disabled]:active,
  1057. input[type="color"].is-disabled:focus,
  1058. input[type="color"].is-disabled:active,
  1059. select[disabled]:focus,
  1060. select[disabled]:active,
  1061. select.is-disabled:focus,
  1062. select.is-disabled:active,
  1063. textarea[disabled]:focus,
  1064. textarea[disabled]:active,
  1065. textarea.is-disabled:focus,
  1066. textarea.is-disabled:active,
  1067. .field[disabled]:focus,
  1068. .field[disabled]:active,
  1069. .field.is-disabled:focus,
  1070. .field.is-disabled:active {
  1071. background-color: #d5edf8; }
  1072. textarea {
  1073. max-width: 100%;
  1074. min-height: 120px;
  1075. line-height: 1.5em; }
  1076. select {
  1077. -webkit-appearance: none;
  1078. /* 1 */
  1079. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  1080. background-repeat: no-repeat;
  1081. background-position: 97.5% center; }
  1082. /*********************
  1083. BASE (MOBILE) SIZE
  1084. This are the mobile styles. It's what people see on their phones. If
  1085. you set a great foundation, you won't need to add too many styles in
  1086. the other stylesheets. Remember, keep it light: Speed is Important.
  1087. *********************/
  1088. /******************************************************************
  1089. Site Name:
  1090. Author:
  1091. Stylesheet: Base Mobile Stylesheet
  1092. Be light and don't over style since everything here will be
  1093. loaded by mobile devices. You want to keep it as minimal as
  1094. possible. This is called at the top of the main stylsheet
  1095. and will be used across all viewports.
  1096. ******************************************************************/
  1097. /*********************
  1098. GENERAL STYLES
  1099. *********************/
  1100. body {
  1101. font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  1102. font-size: 100%;
  1103. line-height: 1.5;
  1104. color: #5c6b80;
  1105. background-color: #eaedf2;
  1106. -webkit-font-smoothing: antialiased; }
  1107. /********************
  1108. WORDPRESS BODY CLASSES
  1109. style a page via class
  1110. ********************/
  1111. /* for sites that are read right to left (i.e. hebrew) */
  1112. /* home page */
  1113. /* blog template page */
  1114. /* archive page */
  1115. /* date archive page */
  1116. /* replace the number to the corresponding page number */
  1117. /* search page */
  1118. /* search result page */
  1119. /* no results search page */
  1120. /* individual paged search (i.e. body.search-paged-3) */
  1121. /* 404 page */
  1122. /* single post page */
  1123. /* individual post page by id (i.e. body.postid-73) */
  1124. /* individual paged single (i.e. body.single-paged-3) */
  1125. /* attatchment page */
  1126. /* individual attatchment page (i.e. body.attachmentid-763) */
  1127. /* style mime type pages */
  1128. /* author page */
  1129. /* user nicename (i.e. body.author-samueladams) */
  1130. /* paged author archives (i.e. body.author-paged-4) for page 4 */
  1131. /* category page */
  1132. /* individual category page (i.e. body.category-6) */
  1133. /* replace the number to the corresponding page number */
  1134. /* tag page */
  1135. /* individual tag page (i.e. body.tag-news) */
  1136. /* replace the number to the corresponding page number */
  1137. /* custom page template page */
  1138. /* individual page template (i.e. body.page-template-contact-php */
  1139. /* replace the number to the corresponding page number */
  1140. /* parent page template */
  1141. /* child page template */
  1142. /* replace the number to the corresponding page number */
  1143. /* if user is logged in */
  1144. /* paged items like search results or archives */
  1145. /* individual paged (i.e. body.paged-3) */
  1146. /*********************
  1147. LAYOUT & GRID STYLES
  1148. *********************/
  1149. .wrap {
  1150. width: 96%;
  1151. margin: 0 auto; }
  1152. /*********************
  1153. LINK STYLES
  1154. *********************/
  1155. a, a:visited {
  1156. color: #f01d4f;
  1157. /* on hover */
  1158. /* on click */
  1159. /* mobile tap color */ }
  1160. a:hover, a:focus, a:visited:hover, a:visited:focus {
  1161. color: #d10e3c; }
  1162. a:link, a:visited:link {
  1163. /*
  1164. this highlights links on iPhones/iPads.
  1165. so it basically works like the :hover selector
  1166. for mobile devices.
  1167. */
  1168. -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); }
  1169. /******************************************************************
  1170. H1, H2, H3, H4, H5 STYLES
  1171. ******************************************************************/
  1172. h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  1173. text-rendering: optimizelegibility;
  1174. font-weight: 500;
  1175. /*
  1176. if you're going to use webfonts, be sure to check your weights
  1177. http://css-tricks.com/watch-your-font-weight/
  1178. */
  1179. /* removing text decoration from all headline links */ }
  1180. h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  1181. text-decoration: none; }
  1182. h1, .h1 {
  1183. font-size: 2.5em;
  1184. line-height: 1.333em; }
  1185. h2, .h2 {
  1186. font-size: 1.75em;
  1187. line-height: 1.4em;
  1188. margin-bottom: 0.375em; }
  1189. h3, .h3 {
  1190. font-size: 1.125em; }
  1191. h4, .h4 {
  1192. font-size: 1.1em;
  1193. font-weight: 700; }
  1194. h5, .h5 {
  1195. font-size: 0.846em;
  1196. line-height: 2.09em;
  1197. text-transform: uppercase;
  1198. letter-spacing: 2px; }
  1199. /*********************
  1200. HEADER STYLES
  1201. *********************/
  1202. .header {
  1203. background-color: #323944; }
  1204. #logo {
  1205. margin: 0.75em 0; }
  1206. #logo a {
  1207. color: white; }
  1208. /*********************
  1209. NAVIGATION STYLES
  1210. *********************/
  1211. /*
  1212. all navs have a .nav class applied via
  1213. the wp_menu function; this is so we can
  1214. easily write one group of styles for
  1215. the navs on the site so our css is cleaner
  1216. and more scalable.
  1217. */
  1218. .nav {
  1219. border-bottom: 0;
  1220. margin: 0;
  1221. /* end .menu li */
  1222. /* highlight current page */
  1223. /* end current highlighters */ }
  1224. .nav li {
  1225. /*
  1226. so you really have to rethink your dropdowns for mobile.
  1227. you don't want to have it expand too much because the
  1228. screen is so small. How you manage your menu should
  1229. depend on the project. Here's some great info on it:
  1230. http://www.alistapart.com/articles/organizing-mobile/
  1231. */ }
  1232. .nav li a {
  1233. display: block;
  1234. color: white;
  1235. text-decoration: none;
  1236. padding: 0.75em;
  1237. /*
  1238. remember this is for mobile ONLY, so there's no need
  1239. to even declare hover styles here, you can do it in
  1240. the style.scss file where it's relevant. We want to
  1241. keep this file as small as possible!
  1242. */ }
  1243. .nav li ul.sub-menu li a,
  1244. .nav li ul.children li a {
  1245. padding-left: 30px; }
  1246. /* end .nav */
  1247. /*********************
  1248. POSTS & CONTENT STYLES
  1249. *********************/
  1250. #content {
  1251. margin-top: 1.5em; }
  1252. .hentry {
  1253. background-color: white;
  1254. border-radius: 3px;
  1255. margin-bottom: 1.5em;
  1256. border: 1px solid #cccccc; }
  1257. .hentry header {
  1258. border-bottom: 1px solid #f8f9fa;
  1259. padding: 1.5em; }
  1260. .hentry footer {
  1261. padding: 1.5em;
  1262. border-top: 1px solid #f8f9fa; }
  1263. .hentry footer p {
  1264. margin: 0; }
  1265. /* end .hentry */
  1266. .single-title,
  1267. .page-title,
  1268. .entry-title {
  1269. margin: 0; }
  1270. /* want to style individual post classes? Booya! */
  1271. /* post by id (i.e. post-3) */
  1272. /* general post style */
  1273. /* general article on a page style */
  1274. /* general style on an attatchment */
  1275. /* sticky post style */
  1276. /* hentry class */
  1277. /* style by category (i.e. category-videos) */
  1278. /* style by tag (i.e. tag-news) */
  1279. /* post meta */
  1280. .byline {
  1281. color: #9fa6b4;
  1282. font-style: italic;
  1283. margin: 0; }
  1284. /* entry content */
  1285. .entry-content {
  1286. padding: 1.5em 1.5em 0;
  1287. /*
  1288. image alignment on a screen this size may be
  1289. a bit difficult. It's set to start aligning
  1290. and floating images at the next breakpoint,
  1291. but it's up to you. Feel free to change it up.
  1292. */ }
  1293. .entry-content p {
  1294. margin: 0 0 1.5em; }
  1295. .entry-content table {
  1296. width: 100%;
  1297. border: 1px solid #eaedf2;
  1298. margin-bottom: 1.5em; }
  1299. .entry-content table caption {
  1300. margin: 0 0 7px;
  1301. font-size: 0.75em;
  1302. color: #9fa6b4;
  1303. text-transform: uppercase;
  1304. letter-spacing: 1px; }
  1305. .entry-content tr {
  1306. border-bottom: 1px solid #eaedf2; }
  1307. .entry-content tr:nth-child(even) {
  1308. background-color: #f8f9fa; }
  1309. .entry-content td {
  1310. padding: 7px;
  1311. border-right: 1px solid #eaedf2; }
  1312. .entry-content td:last-child {
  1313. border-right: 0; }
  1314. .entry-content th {
  1315. background-color: #f8f9fa;
  1316. border-bottom: 1px solid #eaedf2;
  1317. border-right: 1px solid #eaedf2; }
  1318. .entry-content th:last-child {
  1319. border-right: 0; }
  1320. .entry-content blockquote {
  1321. margin: 0 0 1.5em 0.75em;
  1322. padding: 0 0 0 0.75em;
  1323. border-left: 3px solid #2980b9;
  1324. font-style: italic;
  1325. color: #9fa6b4; }
  1326. .entry-content dd {
  1327. margin-left: 0;
  1328. font-size: 0.9em;
  1329. color: #787878;
  1330. margin-bottom: 1.5em; }
  1331. .entry-content img {
  1332. margin: 0 0 1.5em 0;
  1333. max-width: 100%;
  1334. height: auto; }
  1335. .entry-content .size-auto,
  1336. .entry-content .size-full,
  1337. .entry-content .size-large,
  1338. .entry-content .size-medium,
  1339. .entry-content .size-thumbnail {
  1340. max-width: 100%;
  1341. height: auto; }
  1342. .entry-content pre {
  1343. background: #323944;
  1344. color: #f8f9fa;
  1345. font-size: 0.9em;
  1346. padding: 1.5em;
  1347. margin: 0 0 1.5em;
  1348. border-radius: 3px; }
  1349. /* end .entry-content */
  1350. .wp-caption {
  1351. max-width: 100%;
  1352. background: #eee;
  1353. padding: 5px;
  1354. /* images inside wp-caption */ }
  1355. .wp-caption img {
  1356. max-width: 100%;
  1357. margin-bottom: 0;
  1358. width: 100%; }
  1359. .wp-caption p.wp-caption-text {
  1360. font-size: 0.85em;
  1361. margin: 4px 0 7px;
  1362. text-align: center; }
  1363. /* end .wp-caption */
  1364. /* image gallery styles */
  1365. /* end .gallery */
  1366. /* gallery caption styles */
  1367. .tags {
  1368. margin: 0; }
  1369. /******************************************************************
  1370. PAGE NAVI STYLES
  1371. ******************************************************************/
  1372. .pagination,
  1373. .wp-prev-next {
  1374. margin: 1.5em 0; }
  1375. .pagination {
  1376. text-align: center; }
  1377. .pagination ul {
  1378. display: inline-block;
  1379. background-color: white;
  1380. white-space: nowrap;
  1381. padding: 0;
  1382. clear: both;
  1383. border-radius: 3px; }
  1384. .pagination li {
  1385. padding: 0;
  1386. margin: 0;
  1387. float: left;
  1388. display: inline;
  1389. overflow: hidden;
  1390. border-right: 1px solid #eaedf2; }
  1391. .pagination a, .pagination span {
  1392. margin: 0;
  1393. text-decoration: none;
  1394. padding: 0;
  1395. line-height: 1em;
  1396. font-size: 1em;
  1397. font-weight: normal;
  1398. padding: 0.75em;
  1399. min-width: 1em;
  1400. display: block;
  1401. color: #2980b9; }
  1402. .pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
  1403. background-color: #2980b9;
  1404. color: white; }
  1405. .pagination .current {
  1406. cursor: default;
  1407. color: #5c6b80; }
  1408. .pagination .current:hover, .pagination .current:focus {
  1409. background-color: white;
  1410. color: #5c6b80; }
  1411. /* end .bones_page_navi */
  1412. /* fallback previous & next links */
  1413. .wp-prev-next .prev-link {
  1414. float: left; }
  1415. .wp-prev-next .next-link {
  1416. float: right; }
  1417. /* end .wp-prev-next */
  1418. /******************************************************************
  1419. COMMENT STYLES
  1420. ******************************************************************/
  1421. /* h3 comment title */
  1422. #comments-title {
  1423. padding: 0.75em;
  1424. margin: 0;
  1425. border-top: 1px solid #f8f9fa;
  1426. /* number of comments span */ }
  1427. .commentlist {
  1428. margin: 0;
  1429. list-style-type: none; }
  1430. .comment {
  1431. position: relative;
  1432. clear: both;
  1433. overflow: hidden;
  1434. padding: 1.5em;
  1435. border-bottom: 1px solid #f8f9fa;
  1436. /* vcard */
  1437. /* end .commentlist .vcard */
  1438. /* end children */
  1439. /* general comment classes */ }
  1440. .comment .comment-author {
  1441. padding: 7px;
  1442. border: 0; }
  1443. .comment .vcard {
  1444. margin-left: 50px; }
  1445. .comment .vcard cite.fn {
  1446. font-weight: 700;
  1447. font-style: normal; }
  1448. .comment .vcard time {
  1449. display: block;
  1450. font-size: 0.9em;
  1451. font-style: italic; }
  1452. .comment .vcard time a {
  1453. color: #9fa6b4;
  1454. text-decoration: none; }
  1455. .comment .vcard time a:hover {
  1456. text-decoration: underline; }
  1457. .comment .vcard .avatar {
  1458. position: absolute;
  1459. left: 16px;
  1460. border-radius: 50%; }
  1461. .comment:last-child {
  1462. margin-bottom: 0; }
  1463. .comment .children {
  1464. margin: 0;
  1465. /* variations */
  1466. /* change number for different depth */ }
  1467. .comment[class*=depth-] {
  1468. margin-top: 1.1em; }
  1469. .comment.depth-1 {
  1470. margin-left: 0;
  1471. margin-top: 0; }
  1472. .comment:not(.depth-1) {
  1473. margin-top: 0;
  1474. margin-left: 7px;
  1475. padding: 7px; }
  1476. .comment.odd {
  1477. background-color: white; }
  1478. .comment.even {
  1479. background: #f8f9fa; }
  1480. /* comment meta */
  1481. /* comment content */
  1482. .comment_content p {
  1483. margin: 0.7335em 0 1.5em;
  1484. font-size: 1em;
  1485. line-height: 1.5em; }
  1486. /* end .commentlist .comment_content */
  1487. /* comment reply link */
  1488. .comment-reply-link {
  1489. font-size: 0.9em;
  1490. float: right; }
  1491. /* end .commentlist .comment-reply-link */
  1492. /* edit comment link */
  1493. .comment-edit-link {
  1494. font-style: italic;
  1495. margin: 0 7px;
  1496. text-decoration: none;
  1497. font-size: 0.9em; }
  1498. /******************************************************************
  1499. COMMENT FORM STYLES
  1500. ******************************************************************/
  1501. .comment-respond {
  1502. padding: 1.5em;
  1503. border-top: 1px solid #f8f9fa; }
  1504. #reply-title {
  1505. margin: 0; }
  1506. .logged-in-as {
  1507. color: #9fa6b4;
  1508. font-style: italic;
  1509. margin: 0; }
  1510. .logged-in-as a {
  1511. color: #5c6b80; }
  1512. .comment-form-comment {
  1513. margin: 1.5em 0 0.75em; }
  1514. .form-allowed-tags {
  1515. padding: 1.5em;
  1516. background-color: #f8f9fa;
  1517. font-size: 0.9em; }
  1518. /* comment submit button */
  1519. #submit {
  1520. float: right;
  1521. font-size: 1em; }
  1522. /* comment form title */
  1523. #comment-form-title {
  1524. margin: 0 0 1.1em; }
  1525. /* cancel comment reply link */
  1526. /* logged in comments */
  1527. /* allowed tags */
  1528. #allowed_tags {
  1529. margin: 1.5em 10px 0.7335em 0; }
  1530. /* no comments */
  1531. .nocomments {
  1532. margin: 0 20px 1.1em; }
  1533. /*********************
  1534. SIDEBARS & ASIDES
  1535. *********************/
  1536. .widget ul li {
  1537. /* deep nesting */ }
  1538. .no-widgets {
  1539. background-color: white;
  1540. padding: 1.5em;
  1541. text-align: center;
  1542. border: 1px solid #cccccc;
  1543. border-radius: 2px;
  1544. margin-bottom: 1.5em; }
  1545. /*********************
  1546. FOOTER STYLES
  1547. *********************/
  1548. .footer {
  1549. clear: both;
  1550. background-color: #323944;
  1551. color: #f8f9fa; }
  1552. /*
  1553. if you checked out the link above:
  1554. http://www.alistapart.com/articles/organizing-mobile/
  1555. you'll want to style the footer nav
  1556. a bit more in-depth. Remember to keep
  1557. it simple because you'll have to
  1558. override these styles for the desktop
  1559. view.
  1560. */
  1561. /* end .footer-links */
  1562. /*********************
  1563. LARGER MOBILE DEVICES
  1564. This is for devices like the Galaxy Note or something that's
  1565. larger than an iPhone but smaller than a tablet. Let's call them
  1566. tweeners.
  1567. *********************/
  1568. @media only screen and (min-width: 481px) {
  1569. /******************************************************************
  1570. Site Name:
  1571. Author:
  1572. Stylesheet: 481px and Up Stylesheet
  1573. This stylesheet is loaded for larger devices. It's set to
  1574. 481px because at 480px it would load on a landscaped iPhone.
  1575. This isn't ideal because then you would be loading all those
  1576. extra styles on that same mobile connection.
  1577. A word of warning. This size COULD be a larger mobile device,
  1578. so you still want to keep it pretty light and simply expand
  1579. upon your base.scss styles.
  1580. ******************************************************************/
  1581. /*
  1582. IMPORTANT NOTE ABOUT SASS 3.3 & UP
  1583. You can't use @extend within media queries
  1584. anymore, so just be aware that if you drop
  1585. them in here, they won't work.
  1586. */
  1587. /*********************
  1588. NAVIGATION STYLES
  1589. *********************/
  1590. /* .menu is clearfixed inside mixins.scss */
  1591. .menu {
  1592. /* end .menu ul */ }
  1593. .menu ul {
  1594. /* end .menu ul li */
  1595. /* highlight current page */
  1596. /* end current highlighters */ }
  1597. .menu ul li {
  1598. /*
  1599. plan your menus and drop-downs wisely.
  1600. */ }
  1601. .menu ul li a {
  1602. /*
  1603. you can use hover styles here even though this size
  1604. has the possibility of being a mobile device.
  1605. */ }
  1606. /* end .menu */
  1607. /*********************
  1608. POSTS & CONTENT STYLES
  1609. *********************/
  1610. /* entry content */
  1611. .entry-content {
  1612. /* at this larger size, we can start to align images */ }
  1613. .entry-content .alignleft, .entry-content img.alignleft {
  1614. margin-right: 1.5em;
  1615. display: inline;
  1616. float: left; }
  1617. .entry-content .alignright, .entry-content img.alignright {
  1618. margin-left: 1.5em;
  1619. display: inline;
  1620. float: right; }
  1621. .entry-content .aligncenter, .entry-content img.aligncenter {
  1622. margin-right: auto;
  1623. margin-left: auto;
  1624. display: block;
  1625. clear: both; }
  1626. /* end .entry-content */
  1627. /*********************
  1628. FOOTER STYLES
  1629. *********************/
  1630. /*
  1631. check your menus here. do they look good?
  1632. do they need tweaking?
  1633. */
  1634. /* end .footer-links */ }
  1635. /*********************
  1636. TABLET & SMALLER LAPTOPS
  1637. This is the average viewing window. So Desktops, Laptops, and
  1638. in general anyone not viewing on a mobile device. Here's where
  1639. you can add resource intensive styles.
  1640. *********************/
  1641. @media only screen and (min-width: 768px) {
  1642. /******************************************************************
  1643. Site Name:
  1644. Author:
  1645. Stylesheet: Tablet & Small Desktop Stylesheet
  1646. Here's where you can start getting into the good stuff.
  1647. This size will work on iPads, other tablets, and desktops.
  1648. So you can start working with more styles, background images,
  1649. and other resources. You'll also notice the grid starts to
  1650. come into play. Have fun!
  1651. ******************************************************************/
  1652. /*********************
  1653. GENERAL STYLES
  1654. *********************/
  1655. /*********************
  1656. LAYOUT & GRID STYLES
  1657. *********************/
  1658. .wrap {
  1659. width: 760px; }
  1660. /*********************
  1661. HEADER STYLES
  1662. *********************/
  1663. /*********************
  1664. NAVIGATION STYLES
  1665. *********************/
  1666. .nav {
  1667. border: 0;
  1668. /* end .menu ul li */
  1669. /* highlight current page */
  1670. /* end current highlighters */ }
  1671. .nav ul {
  1672. margin-top: 0; }
  1673. .nav li {
  1674. float: left;
  1675. position: relative;
  1676. /*
  1677. plan your menus and drop-downs wisely.
  1678. */
  1679. /* showing sub-menus */ }
  1680. .nav li a {
  1681. border-bottom: 0;
  1682. /*
  1683. you can use hover styles here even though this size
  1684. has the possibility of being a mobile device.
  1685. */ }
  1686. .nav li a:hover, .nav li a:focus {
  1687. color: white;
  1688. text-decoration: underline; }
  1689. .nav li ul.sub-menu,
  1690. .nav li ul.children {
  1691. margin-top: 0;
  1692. border: 1px solid #ccc;
  1693. border-top: 0;
  1694. position: absolute;
  1695. overflow: hidden;
  1696. visibility: hidden;
  1697. z-index: 8999;
  1698. /* highlight sub-menu current page */ }
  1699. .nav li ul.sub-menu li,
  1700. .nav li ul.children li {
  1701. /*
  1702. if you need to go deeper, go nuts
  1703. just remember deeper menus suck
  1704. for usability. k, bai.
  1705. */ }
  1706. .nav li ul.sub-menu li a,
  1707. .nav li ul.children li a {
  1708. padding-left: 10px;
  1709. border-right: 0;
  1710. display: block;
  1711. width: 180px;
  1712. border-bottom: 1px solid #ccc; }
  1713. .nav li ul.sub-menu li:last-child a,
  1714. .nav li ul.children li:last-child a {
  1715. border-bottom: 0; }
  1716. .nav li:hover ul {
  1717. top: auto;
  1718. overflow: visible;
  1719. visibility: visible; }
  1720. /* end .nav */
  1721. /*********************
  1722. SIDEBARS & ASIDES
  1723. *********************/
  1724. .sidebar {
  1725. margin-top: 2.2em; }
  1726. .widgettitle {
  1727. border-bottom: 2px solid #444;
  1728. margin-bottom: 0.75em; }
  1729. .widget {
  1730. padding: 0 10px;
  1731. margin: 2.2em 0; }
  1732. .widget ul li {
  1733. margin-bottom: 0.75em;
  1734. /* deep nesting */ }
  1735. .widget ul li ul {
  1736. margin-top: 0.75em;
  1737. padding-left: 1em; }
  1738. /* links widget */
  1739. /* meta widget */
  1740. /* pages widget */
  1741. /* recent-posts widget */
  1742. /* archives widget */
  1743. /* tag-cloud widget */
  1744. /* calendar widget */
  1745. /* category widget */
  1746. /* recent-comments widget */
  1747. /* search widget */
  1748. /* text widget */
  1749. /*********************
  1750. FOOTER STYLES
  1751. *********************/
  1752. /*
  1753. you'll probably need to do quite a bit
  1754. of overriding here if you styled them for
  1755. mobile. Make sure to double check these!
  1756. */
  1757. .footer-links ul li {
  1758. /*
  1759. be careful with the depth of your menus.
  1760. it's very rare to have multi-depth menus in
  1761. the footer.
  1762. */ }
  1763. /* end .footer-links */ }
  1764. /*********************
  1765. DESKTOP
  1766. This is the average viewing window. So Desktops, Laptops, and
  1767. in general anyone not viewing on a mobile device. Here's where
  1768. you can add resource intensive styles.
  1769. *********************/
  1770. @media only screen and (min-width: 1030px) {
  1771. /******************************************************************
  1772. Site Name:
  1773. Author:
  1774. Stylesheet: Desktop Stylsheet
  1775. This is the desktop size. It's larger than an iPad so it will only
  1776. be seen on the Desktop.
  1777. ******************************************************************/
  1778. .wrap {
  1779. width: 1040px; } }
  1780. /*********************
  1781. LARGE VIEWING SIZE
  1782. This is for the larger monitors and possibly full screen viewers.
  1783. *********************/
  1784. @media only screen and (min-width: 1240px) {
  1785. /******************************************************************
  1786. Site Name:
  1787. Author:
  1788. Stylesheet: Super Large Monitor Stylesheet
  1789. You can add some advanced styles here if you like. This kicks in
  1790. on larger screens.
  1791. ******************************************************************/ }
  1792. /*********************
  1793. RETINA (2x RESOLUTION DEVICES)
  1794. This applies to the retina iPhone (4s) and iPad (2,3) along with
  1795. other displays with a 2x resolution. You can also create a media
  1796. query for retina AND a certain size if you want. Go Nuts.
  1797. *********************/
  1798. @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) {
  1799. /******************************************************************
  1800. Site Name:
  1801. Author:
  1802. Stylesheet: Retina Screens & Devices Stylesheet
  1803. When handling retina screens you need to make adjustments, especially
  1804. if you're not using font icons. Here you can add them in one neat
  1805. place.
  1806. ******************************************************************/
  1807. /*
  1808. EXAMPLE
  1809. Let's say you have an image and you need to make sure it looks ok
  1810. on retina screens. Let's say we have an icon which dimension are
  1811. 24px x 24px. In your regular stylesheets, it would look something
  1812. like this:
  1813. .icon {
  1814. width: 24px;
  1815. height: 24px;
  1816. background: url(img/test.png) no-repeat;
  1817. }
  1818. For retina screens, we have to make some adjustments, so that image
  1819. doesn't look blurry. So, taking into account the image above and the
  1820. dimensions, this is what we would put in our retina stylesheet:
  1821. .icon {
  1822. background: url(img/test@2x.png) no-repeat;
  1823. background-size: 24px 24px;
  1824. }
  1825. So, you would create the same icon, but at double the resolution, meaning
  1826. it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  1827. (this is pretty standard practice). Set the background image so it matches
  1828. the original dimensions and you are good to go.
  1829. */ }
  1830. /*********************
  1831. PRINT STYLESHEET
  1832. Feel free to customize this. Remember to add things that won't make
  1833. sense to print at the bottom. Things like nav, ads, and forms should
  1834. be set to display none.
  1835. *********************/
  1836. @media print {
  1837. /******************************************************************
  1838. Site Name:
  1839. Author:
  1840. Stylesheet: Print Stylesheet
  1841. This is the print stylesheet. There's probably not a lot
  1842. of reasons to edit this stylesheet. If you want to
  1843. though, go for it.
  1844. ******************************************************************/
  1845. * {
  1846. background: transparent !important;
  1847. color: black !important;
  1848. text-shadow: none !important;
  1849. filter: none !important;
  1850. -ms-filter: none !important; }
  1851. a, a:visited {
  1852. color: #444 !important;
  1853. text-decoration: underline; }
  1854. a:after, a:visited:after {
  1855. content: " (" attr(href) ")"; }
  1856. a abbr[title]:after, a:visited abbr[title]:after {
  1857. content: " (" attr(title) ")"; }
  1858. .ir a:after,
  1859. a[href^="javascript:"]:after,
  1860. a[href^="#"]:after {
  1861. content: ""; }
  1862. pre, blockquote {
  1863. border: 1px solid #999;
  1864. page-break-inside: avoid; }
  1865. thead {
  1866. display: table-header-group; }
  1867. tr, img {
  1868. page-break-inside: avoid; }
  1869. img {
  1870. max-width: 100% !important; }
  1871. @page {
  1872. margin: 0.5cm; }
  1873. p, h2, h3 {
  1874. orphans: 3;
  1875. widows: 3; }
  1876. h2,
  1877. h3 {
  1878. page-break-after: avoid; }
  1879. .sidebar,
  1880. .page-navigation,
  1881. .wp-prev-next,
  1882. .respond-form,
  1883. nav {
  1884. display: none; } }