style.css 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640
  1. /******************************************************************
  2. Theme Name: Bones
  3. Theme URI: http://www.themble.com/bones
  4. Description: This site was built using the Bones Development Theme. For more information about Bones or to view documentation, you can visit the <a href="http://themble.com/docs/" title="Bones Documentation">Bones Documentation</a> page. You can also view the conversation on Twitter by following the hashtag: <a href="http://twitter.com/#!/search/%23wpbones">#wpbones</a>.
  5. Author: Eddie Machado
  6. Author URI: http://www.themble.com/bones/
  7. Version: 1.09
  8. Tags: html5, css3, fixed, development, bones, h5bp
  9. License: GPL or whatever
  10. License URI: http://www.gnu.org/copyleft/gpl.html
  11. All Default Styles are in library/css/normalize.css
  12. I reccommend not editing those files and making all
  13. changes here. That way if something goes awry, you
  14. can easily revert back to the original, but that's
  15. totally up to you. Happy Developing!
  16. ******************************************************************/
  17. /******************************************************************
  18. GENERAL LAYOUT STYLES
  19. ******************************************************************/
  20. body { background: #fefefe; }
  21. /******************************************************************
  22. GRID STYLES
  23. ******************************************************************/
  24. /* 960 Grid System (http://960.gs/ ) */
  25. #container, .wrap {
  26. width: 940px;
  27. margin: 0 auto;
  28. padding: 0 10px;
  29. }
  30. /* layout options ( all have margins right & left of 2.1276596%) */
  31. .col60 { width: 6.3829787%; } /* width 60px / grid_1 */
  32. .col140 { width: 14.893617%; } /* width 140px / grid_2 */
  33. .col220 { width: 23.404255%; } /* width 220px / grid_3 */
  34. .col300 { width: 31.914894%; } /* width 300px / grid_4 */
  35. .col380 { width: 40.425532%; } /* width 380px / grid_5 */
  36. .col480 { width: 51.06383%; } /* width 480px / grid_6 */
  37. .col540 { width: 57.446809%; } /* width 540px / grid_7 */
  38. .col620 { width: 65.957447%; } /* width 620px / grid_8 */
  39. .col700 { width: 74.468085%; } /* width 700px / grid_9 */
  40. .col780 { width: 82.978723%; } /* width 780px / grid_10 */
  41. .col860 { width: 91.489362%; } /* width 860px / grid_11 */
  42. .col940 { width: 100.0%; } /* width 940px / grid_12 */
  43. /* layout & column defaults */
  44. .col60, .col140, .col220, .col300, .col380, .col480, .col540, .col620, .col700, .col780, .col860, .col940 {
  45. display: inline;
  46. float: left;
  47. position: relative;
  48. margin-left: 1.0638298%; /* 10px */
  49. margin-right: 1.0638298%; /* 10px */
  50. }
  51. /* default styles & fixes */
  52. .first { margin-left: 0; } /* fixes alignment */
  53. .last { margin-right: 0; } /* fixes alignment */
  54. /* To Use Another Grid System, simply visit:
  55. http://themble.com/bones/docs/grids
  56. There, you can check out how to replace this grid with other like:
  57. 960, Blueprint, and any other custom ones.
  58. */
  59. /******************************************************************
  60. COMMON & REUSABLE STYLES
  61. ******************************************************************/
  62. /* floats */
  63. .left { float: left; }
  64. .right { float: right; }
  65. /* text alignment */
  66. .text-left { text-align: left; }
  67. .text-center { text-align: center; }
  68. .text-right { text-align: right; }
  69. /* highlighting search term on search page */
  70. mark, .search-term { background: #EBE16F; }
  71. /* alerts & notices */
  72. .help, .info, .error, .success { margin: 10px; padding: 5px 18px; border: 1px solid #cecece; }
  73. .help { border-color: #E0C618; background: #EBE16F; }
  74. .info { border-color: #92cae4; background: #d5edf8; }
  75. .error { border-color: #fbc2c4; background: #fbe3e4; }
  76. .success { border-color: #c6d880; background: #e6efc2; }
  77. /* To embed your own fonts, use this syntax
  78. and place your fonts inside the
  79. library/fonts folder. For more information
  80. on embedding fonts, go to:
  81. http://www.fontsquirrel.com/
  82. Be sure to remove the comment brackets.
  83. */
  84. /* @font-face {
  85. font-family: 'Font Name';
  86. src: url('library/fonts/font-name.eot');
  87. src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
  88. url('library/fonts/font-name.woff') format('woff'),
  89. url('library/fonts/font-name.ttf') format('truetype'),
  90. url('library/fonts/font-name.svg#font-name') format('svg');
  91. font-weight: normal;
  92. font-style: normal;
  93. }
  94. */
  95. /******************************************************************
  96. LINK STYLES
  97. ******************************************************************/
  98. a, a:visited { color: #f01d4f; }
  99. a:hover, a:focus { color: #f05e81; }
  100. a:active {} /* on click */
  101. a:link { -webkit-tap-highlight-color : rgba(0,0,0,0); /* this highlights links on Iphones / iPads */ }
  102. /******************************************************************
  103. TEXT SELECTION STYLES
  104. ******************************************************************/
  105. /* Highlighted Text */
  106. ::selection {
  107. background: #6fc2f6;
  108. color:#fff;
  109. text-shadow : none;
  110. }
  111. /* Firefox */
  112. ::-moz-selection {
  113. background: #6fc2f6;
  114. color:#fff;
  115. text-shadow : none;
  116. }
  117. /******************************************************************
  118. WORDPRESS BODY CLASSES
  119. want to style a page via body class? go ahead
  120. ******************************************************************/
  121. .rtl {}
  122. .home {} /* home page */
  123. .blog {}
  124. .archive {} /* archive page */
  125. .date {} /* date archive page */
  126. .date-paged-1 {} /* replace the number to the corresponding page number */
  127. .search {} /* search page */
  128. .search-results {} /* search result page */
  129. .search-no-results {} /* no results search page */
  130. .search-paged-1 {} /* individual paged search (i.e. body.search-paged-3) */
  131. .error404 {} /* 404 page */
  132. .single {} /* single post page */
  133. .postid-1 {} /* individual post page by id (i.e. body.postid-73) */
  134. .single-paged-1 {} /* individual paged single (i.e. body.single-paged-3) */
  135. .attachment {} /* attatchment page */
  136. .attachmentid-1 {} /* individual attatchment page (i.e. body.attachmentid-763) */
  137. .attachment-mime-type {} /* style mime type pages */
  138. .author {} /* author page */
  139. .author-nicename {} /* user nicename (i.e. body.author-samueladams) */
  140. .author-paged-1 {} /* paged author archives (i.e. body.author-paged-4) for page 4 */
  141. .category {} /* category page */
  142. .category-1 {} /* individual category page (i.e. body.category-6) */
  143. .category-paged-1 {} /* replace the number to the corresponding page number */
  144. .tag {} /* tag page */
  145. .tag-slug {} /* individual tag page (i.e. body.tag-news) */
  146. .tag-paged-1 {} /* replace the number to the corresponding page number */
  147. .page-template {} /* custom page template page */
  148. .page-template-page-php {} /* individual page template (i.e. body.page-template-contact-php */
  149. .page-paged-1 {} /* replace the number to the corresponding page number */
  150. .page-parent {}
  151. .page-child {}
  152. .parent-pageid-1 {} /* replace the number to the corresponding page number */
  153. .logged-in {} /* if user is logged in */
  154. .paged {} /* paged items like search results or archives */
  155. .paged-1 {} /* individual paged (i.e. body.paged-3) */
  156. /******************************************************************
  157. HEADLINES & TITLES
  158. ******************************************************************/
  159. h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 { font-family: sans-serif; font-weight: 500; }
  160. h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a { text-decoration: none; }
  161. h1, .h1 { font-size: 2.5em; line-height: 1.333em; }
  162. h2, .h2 { font-size: 1.75em; line-height: 1.4em; margin-bottom: 0.375em; }
  163. h3, .h3 { font-size: 1.125em; }
  164. h4, .h4 { font-size: 1.1em; font-weight: 700; }
  165. h5, .h5 { font-size: 0.846em; line-height: 2.09em; text-transform: uppercase; letter-spacing: 2px; }
  166. /******************************************************************
  167. HEADER SYTLES
  168. ******************************************************************/
  169. header[role=banner] {}
  170. #logo { margin: 1.1em 0; }
  171. /******************************************************************
  172. NAVIGATION STYLES
  173. (Main Navigation)
  174. ******************************************************************/
  175. nav[role=navigation] {}
  176. nav[role=navigation] .menu {
  177. margin: 1.1em 0;
  178. }
  179. nav[role=navigation] .menu ul {
  180. background: #4598bb;
  181. }
  182. nav[role=navigation] .menu ul li {
  183. float: left;
  184. }
  185. nav[role=navigation] .menu ul li a {
  186. color: #fefefe;
  187. font-weight: 700;
  188. padding: 10px 20px;
  189. display: block;
  190. text-decoration: none;
  191. text-shadow: 0 -1px 1px rgba(0,0,0,0.33);
  192. }
  193. nav[role=navigation] .menu ul li a:hover {
  194. background: #4eabd2;
  195. color: #fff;
  196. }
  197. nav[role=navigation] .menu ul li:first-child a {}
  198. nav[role=navigation] .menu ul li.current-menu-item a,
  199. nav[role=navigation] .menu ul li.current_page_item a,
  200. nav[role=navigation] .menu ul li.current-page-ancestor a {}
  201. /* sub menus */
  202. nav[role=navigation] .menu ul li ul, nav[role=navigation] .menu ul li ul li ul {
  203. background: #4598bb;
  204. position: absolute;
  205. left: -9999em;
  206. z-index: 9999;
  207. width: 200px;
  208. }
  209. nav[role=navigation] .menu ul li ul li ul {
  210. margin-left: 200px;
  211. top: auto;
  212. margin-top: -30px;
  213. }
  214. nav[role=navigation] .menu ul li ul li:hover ul, nav[role=navigation] .menu ul li:hover ul {
  215. left: auto;
  216. }
  217. nav[role=navigation] .menu ul li ul li a {
  218. width: 160px;
  219. }
  220. nav[role=navigation] .menu ul li ul li a {}
  221. nav[role=navigation] .menu ul li ul li a:hover {}
  222. nav[role=navigation] .menu ul li ul li:last-child a {}
  223. nav[role=navigation] .menu ul li ul li ul.sub-menu { }
  224. nav[role=navigation] .menu ul li ul li:hover ul.sub-menu { }
  225. /******************************************************************
  226. POSTS & CONTENT STYLES
  227. ******************************************************************/
  228. #content {}
  229. #main {}
  230. .hentry { padding: 2.2em 20px 0; }
  231. .single-title, .page-title { margin: 0 0 0.375em;}
  232. .single-title {}
  233. .page-title {}
  234. .archive_title { padding: 0 20px; margin: 1.1em 0 0.75em; }
  235. /* want to style individual post classes? Booya! */
  236. .post-id {} /* post by id (i.e. post-3) */
  237. .post {} /* general post style */
  238. .page {} /* general article on a page style */
  239. .attachment {} /* general style on an attatchment */
  240. .sticky {} /* sticky post style */
  241. .hentry {} /* hentry class */
  242. .category-slug {} /* style by category (i.e. category-videos) */
  243. .tag-slug {} /* style by tag (i.e. tag-news) */
  244. /* post meta */
  245. .meta { font-size:0.9em; letter-spacing:0.05em; line-height:1.75em; color: #999; margin: 0.875em 0; }
  246. .meta time {}
  247. /* post content */
  248. .post_content {}
  249. .post_content p { margin: 0 0 1.5em 0; line-height: 1.5em; }
  250. .post_content ul, .post_content ol, .post_content table, .post_content dl { margin: 1.5em 0; }
  251. .post_content ul, .post_content ol { list-style-position:outside; line-height:1.5; margin-left: 2.2em; margin-right: 2.2em; }
  252. .post_content li { margin-bottom: 0.75em; }
  253. .post_content ul li { list-style-type: disc; }
  254. .post_content ol li { list-style-type: decimal; }
  255. .post_content blockquote { font-style:italic; line-height:1.6em; margin: 1.5em 2.2em; }
  256. .post_content blockquote:before { font-family:Georgia, serif; content: "“"; font-size:2.75em; text-indent:-.8em; margin-top:.1em; float:left; opacity:.3; } /* this adds the quote before the blockquote */
  257. .post_content dl { margin:1.75em 0 1.75em; }
  258. .post_content dt { margin-top: 1.25em; font-weight:700; }
  259. .post_content dd { font-style: italic; margin-top:0.5em; line-height:1.6em; }
  260. .post_content img { margin: 0 0 1.5em 0; max-width: 100%; }
  261. .alignleft, img.alignleft { margin-right: 1.5em; display: inline; float: left; }
  262. .alignright, img.alignright { margin-left: 1.5em; display: inline; float: right; }
  263. .aligncenter, img.aligncenter { margin-right: auto; margin-left: auto; display: block; clear: both; }
  264. .post_content video { margin: 1.5em 0; max-width: 100%; display: block; }
  265. .post_content object { display: block; margin: 1.5em 0; max-width: 100%; }
  266. .post_content pre, .post_content code { font-size: 0.9em; line-height: 1.7em; padding: 1em; background: #eee; border: 2px solid #cecece; }
  267. .wp-caption { margin-bottom: 1.5em; text-align: center; padding-top: 5px; }
  268. .wp-caption img { border: 0 none; padding: 0; margin: 0; }
  269. .wp-caption .wp-caption-text { font-size:0.8em; font-style:italic; margin:.6em 0 -.2em; }
  270. /* image gallery styles */
  271. .gallery dl {}
  272. .gallery dt {}
  273. .gallery dd {}
  274. .gallery dl a {}
  275. .gallery dl img {}
  276. .gallery-caption {}
  277. .size-full {}
  278. .size-large {}
  279. .size-medium {}
  280. .size-thumbnail {}
  281. .hentry footer { clear: both; margin: 1.5em 0 0; padding-bottom: 2.2em; }
  282. /******************************************************************
  283. PAGE NAVI STYLES
  284. (Special Feature)
  285. ******************************************************************/
  286. /* page navigation */
  287. .page-navigation, .wp-prev-next { margin: 1.1em 0 2.2em; }
  288. .bones_page_navi, .wp-prev-next ul { }
  289. .bones_page_navi li { float: left; margin-left: 10px; }
  290. .bones_page_navi li a { padding: 3px 6px; display: block; text-decoration: none; position: relative; }
  291. .bones_page_navi li a:hover { color: #f01d4f; text-decoration: underline; }
  292. .bones_page_navi li.bpn-current { padding: 3px 6px; border-bottom: 2px solid #f01d4f; position: relative; } /* current page link */
  293. .bones_page_navi li.bpn-current:hover {}
  294. .bones_page_navi li.bpn-prev-link { } /* previous link */
  295. .bones_page_navi li.bpn-prev-link a { padding: 0; }
  296. .bones_page_navi li.bpn-prev-link a:hover { background: none; }
  297. .bones_page_navi li.bpn-next-link { font-weight: 700; } /* next page link */
  298. .bones_page_navi li.bpn-next-link a { padding: 0; }
  299. .bones_page_navi li.bpn-next-link a:hover { background: none; }
  300. .bones_page_navi li.bpn-last-page-link {} /* last page link */
  301. .bones_page_navi li.bpn-last-page-link a {}
  302. .bones_page_navi li.bpn-last-page-link a:hover { background: none; }
  303. .bones_page_navi li.bpn-first-page-link {} /* first page link */
  304. .bones_page_navi li.bpn-first-page-link a {}
  305. .bones_page_navi li.bpn-first-page-link a:hover { background: none; }
  306. /* fallback previous & next links */
  307. .wp-prev-next {}
  308. .wp-prev-next ul {}
  309. .wp-prev-next .prev-link { float: left; }
  310. .wp-prev-next .next-link { float: right; }
  311. /******************************************************************
  312. COMMENT STYLES
  313. ******************************************************************/
  314. #comments { margin: 0 20px 0.75em; }/* h3 comment title */
  315. #comments span { font-weight: 700; color: #1a90db; } /* number of comments span */
  316. .comment-nav {}
  317. .comment-nav ul {}
  318. .comment-nav ul li {}
  319. .commentlist { margin: 0 20px; }
  320. .commentlist li { position: relative; clear: both; list-style-type: none; margin-bottom: 1.5em; padding: 0.7335em 10px; }
  321. .commentlist li[class*=depth-] { padding-left: 20px; margin-top: 1.1em; }
  322. .commentlist li.depth-1 { margin-left: 0; margin-top: 0; }
  323. .commentlist li:not(.depth-1) { margin-right: -10px; margin-top: 0; padding-bottom: 0; }
  324. .commentlist li.depth-2 {}
  325. .commentlist li.depth-3 {}
  326. .commentlist li.depth-4 {}
  327. .commentlist li.depth-5 {}
  328. .commentlist li:last-child { margin-bottom: 0; }
  329. .commentlist li ul.children li {}
  330. .commentlist li ul.children li.alt {}
  331. .commentlist li ul.children li.byuser {}
  332. .commentlist li ul.children li.comment {}
  333. .commentlist li ul.children li.depth-1 {} /* change number for different depth */
  334. .commentlist li ul.children li.bypostauthor {}
  335. .commentlist li ul.children li.comment-author-admin {}
  336. .commentlist li ul.children .alt {}
  337. .commentlist li ul.children .odd {}
  338. .commentlist li ul.children .even {}
  339. .commentlist .alt {}
  340. .commentlist .odd { background: #eee; }
  341. .commentlist .even { background: #fefefe; }
  342. .commentlist .parent {}
  343. .commentlist .comment {}
  344. .commentlist .children { border-left: 2px solid #6ac8d3; }
  345. .commentlist .pingback {}
  346. .commentlist .bypostauthor {}
  347. .commentlist .comment-author {}
  348. .commentlist .comment-author-admin {}
  349. .commentlist .thread-alt {}
  350. .commentlist .thread-odd {}
  351. .commentlist .thread-even {}
  352. .commentlist .vcard { margin-left: 55px; }
  353. .commentlist .vcard cite.fn { font-weight: 700; font-style: normal; }
  354. .commentlist .vcard time { float: right; }
  355. .commentlist .vcard time a { color: #999; text-decoration: none; }
  356. .commentlist .vcard time a:hover { text-decoration: underline; }
  357. .commentlist .vcard img.photo {}
  358. .commentlist .vcard img.avatar { position: absolute; left: 20px; padding: 2px; border: 1px solid #cecece; background: #fff; }
  359. .commentlist .vcard cite.fn a.url {}
  360. .commentlist .comment-meta {}
  361. .commentlist .comment-meta a {}
  362. .commentlist .commentmetadata {}
  363. .commentlist .commentmetadata a {}
  364. .commentlist li .comment_content { margin-left: 55px; }
  365. .commentlist li .comment_content p { margin: 0.7335em 0 1.5em; font-size: 1em; line-height: 1.5em; }
  366. .commentlist li ul { margin: 0; }
  367. .commentlist .comment-reply-link { text-decoration: none; float: right; background: #4598bb; padding: 3px 5px; color: #fff; opacity: 0.65; margin-bottom: 10px; font-weight: 700; font-size: 0.9em; }
  368. .commentlist a.comment-reply-link:hover { opacity: 1; }
  369. /******************************************************************
  370. COMMENT FORM STYLES
  371. ******************************************************************/
  372. .respond-form { margin: 1.5em 20px; padding-bottom: 2.2em; }
  373. #comment-form-title { margin: 0 0 1.1em; }
  374. #cancel-comment-reply {}
  375. #cancel-comment-reply a {}
  376. .respond-form form[method=post] { margin: 0.75em 0; }
  377. .comments-logged-in-as {}
  378. .respond-form form[method=post] li { list-style-type: none; clear: both; margin-bottom: 0.7335em; }
  379. .respond-form form[method=post] li label, .respond-form form[method=post] li small { display: none; }
  380. .respond-form input[type=text], .respond-form input[type=email], .respond-form input[type=url], .respond-form textarea { padding: 3px 6px; background: #efefef; border: 2px solid #cecece; line-height: 1.5em; }
  381. .respond-form input[type=text]:focus, .respond-form input[type=email]:focus, .respond-form input[type=url]:focus, .respond-form textarea:focus { background: #fff; }
  382. .respond-form input[type=text], .respond-form input[type=email], .respond-form input[type=url] { max-width: 400px; min-width: 250px; }
  383. #allowed_tags { margin: 1.5em 10px 0.7335em 0; }
  384. .respond-form textarea { resize: none; width: 97.3%; height: 150px; }
  385. #submit {}
  386. /* form validation */
  387. .respond-form input:invalid, .respond-form textarea:invalid { border-color: #fbc2c4; background: #fbe3e4; outline: none; box-shadow: none; -webkit-box-shadow: none; -moz-box-shadow: none; background-color: #f6e7eb; }
  388. /* no comments */
  389. .nocomments { margin: 0 20px 1.1em; }
  390. /******************************************************************
  391. SIDEBARS & ASIDES
  392. ******************************************************************/
  393. #sidebar1 { margin-top: 2.2em; }
  394. .widget { padding: 0 10px; margin: 2.2em 0; }
  395. .widget li { margin-bottom: 0.75em; }
  396. .widget li ul { margin-top: 0.75em; padding-left: 1em; }
  397. .widgettitle { border-bottom: 2px solid #444; margin-bottom: 0.75em; }
  398. /* links widget */
  399. .widget_links {}
  400. .widget_links ul {}
  401. .widget_links ul li {}
  402. .widget_links ul li a {}
  403. /* meta widget */
  404. .widget_meta {}
  405. .widget_meta ul {}
  406. .widget_meta ul li {}
  407. .widget_meta ul li a {}
  408. /* pages widget */
  409. .widget_pages {}
  410. .widget_pages ul {}
  411. .widget_pages ul li {}
  412. .widget_pages ul li a {}
  413. /* recent-posts widget */
  414. .widget_recent_entries {}
  415. .widget_recent_entries ul {}
  416. .widget_recent_entries ul li {}
  417. .widget_recent_entries ul li a {}
  418. /* archives widget */
  419. .widget_archive {}
  420. .widget_archive ul {}
  421. .widget_archive ul li {}
  422. .widget_archive ul li a {}
  423. .widget_archive select {}
  424. .widget_archive option {}
  425. /* tag-cloud widget */
  426. .widget_links {}
  427. .widget_links li:after {}
  428. .widget_links li:before {}
  429. .widget_tag_cloud {}
  430. .widget_tag_cloud a {}
  431. .widget_tag_cloud a:after {}
  432. .widget_tag_cloud a:before {}
  433. /* calendar widget */
  434. .widget_calendar {}
  435. #calendar_wrap {}
  436. #calendar_wrap th {}
  437. #calendar_wrap td {}
  438. #wp-calendar tr td {}
  439. #wp-calendar caption {}
  440. #wp-calendar a {}
  441. #wp-calendar #today {}
  442. #wp-calendar #prev {}
  443. #wp-calendar #next {}
  444. #wp-calendar #next a {}
  445. #wp-calendar #prev a {}
  446. /* category widget */
  447. .widget_categories {}
  448. .widget_categories ul {}
  449. .widget_categories ul li {}
  450. .widget_categories ul ul.children {}
  451. .widget_categories a {}
  452. .widget_categories select{}
  453. .widget_categories select#cat {}
  454. .widget_categories select.postform {}
  455. .widget_categories option {}
  456. .widget_categories .level-0 {}
  457. .widget_categories .level-1 {}
  458. .widget_categories .level-2 {}
  459. .widget_categories .level-3 {}
  460. /* recent-comments widget */
  461. .recentcomments {}
  462. #recentcomments {}
  463. #recentcomments li {}
  464. #recentcomments li a {}
  465. .widget_recent_comments {}
  466. /* search widget */
  467. #searchform {}
  468. .widget_search {}
  469. .screen-reader-text {}
  470. /* text widget */
  471. .textwidget {}
  472. .widget_text {}
  473. .textwidget p {}
  474. /******************************************************************
  475. FOOTER STYLES
  476. ******************************************************************/
  477. footer[role=contentinfo] { border-top: 1px solid #cecece; padding: 1.1em 0 3.3em; margin-top: 2.2em; }
  478. /* footer menu */
  479. footer[role=contentinfo] nav { float: left; margin: 1em 0; }
  480. .footer-links {}
  481. .footer-links ul { margin-top: 0; }
  482. .footer-links ul li { list-style-type: none; float: left; font-size: 0.9em; }
  483. .footer-links ul li a { margin-right: 10px; text-decoration: underline; }
  484. .footer-links ul li:last-child a { margin-right: 0; }
  485. .footer-links ul li a:hover, .nav ul li.current-menu-item a, .nav ul li.current_page_item a {}
  486. .footer-links ul li ul.sub-menu { display: none; } /* you shouldn't have that many links in the footer anyway so it's set to display none ;P */
  487. .attribution { margin: 1em 0; float: right; color: #999; font-size: 0.9em; }
  488. /******************************************************************
  489. MEDIA QUERIES & DEVICE STYLES
  490. To use a responsive design, it's reccomended to use the responsive version of Bones. You can find it on github: https://github.com/eddiemachado/bones-responsive
  491. ******************************************************************/
  492. @media only screen and (min-width: 480px) {
  493. /* insert styles here */
  494. }
  495. @media only screen and (min-width: 768px) {
  496. /* insert styles here */
  497. }
  498. @media only screen and (min-width: 992px) {
  499. /* insert styles here */
  500. }
  501. @media only screen and (min-width: 1382px) {
  502. /* insert styles here */
  503. }
  504. @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
  505. /* insert styles here */
  506. }
  507. /******************************************************************
  508. PRINT STYLES
  509. (Handled by default, but if you want to edit it, feel free)
  510. ******************************************************************/
  511. @media print { }
  512. /******************************************************************
  513. IE SPECIFIC FIXES
  514. ******************************************************************/
  515. /*
  516. Thanks to the HTML5 Boilerplate there's an easier way
  517. to target IE specific bugs. Simply use the html class
  518. to target the specific version of IE.
  519. To target the .post_content area in IE6, use:
  520. html.ie6 .post_content { ... }
  521. To target the .post_content area in IE7, use:
  522. html.ie7 .post_content { ... }
  523. To target the .post_content area in IE8, use:
  524. html.ie8 .post_content { ... }
  525. To target the .post_content area in older IE use:
  526. html.oldie .post_content { ... }
  527. Much easier right? This way, you don't have to call
  528. any more stylesheets, you can leave it at the bottom
  529. and it will overwrite depending on the html class.
  530. */