style.css 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543
  1. /* http://meyerweb.com/eric/tools/css/reset/
  2. v2.0 | 20110126
  3. License: none (public domain)
  4. */
  5. html, body, div, span, applet, object, iframe,
  6. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  7. a, abbr, acronym, address, big, cite, code,
  8. del, dfn, em, img, ins, kbd, q, s, samp,
  9. small, strike, strong, sub, sup, tt, var,
  10. b, u, i, center,
  11. dl, dt, dd, ol, ul, li,
  12. fieldset, form, label, legend,
  13. table, caption, tbody, tfoot, thead, tr, th, td,
  14. article, aside, canvas, details, embed,
  15. figure, figcaption, footer, header, hgroup,
  16. menu, nav, output, ruby, section, summary,
  17. time, mark, audio, video {
  18. padding: 0;
  19. margin: 0;
  20. font: inherit;
  21. font-size: 100%;
  22. vertical-align: baseline;
  23. border: 0;
  24. }
  25. /* HTML5 display-role reset for older browsers */
  26. article, aside, details, figcaption, figure,
  27. footer, header, hgroup, menu, nav, section {
  28. display: block;
  29. }
  30. body {
  31. line-height: 1;
  32. }
  33. ol, ul {
  34. list-style: none;
  35. }
  36. blockquote, q {
  37. quotes: none;
  38. }
  39. blockquote:before, blockquote:after,
  40. q:before, q:after {
  41. content: '';
  42. content: none;
  43. }
  44. /* LAYOUT STYLES */
  45. body {
  46. color: #eee;
  47. font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, serif;
  48. font-size: 1em;
  49. font-weight: 300;
  50. line-height: 1.5;
  51. background-color: #000;
  52. text-shadow: none;
  53. padding: 0 30px;
  54. }
  55. a {
  56. color: #EE2A7B;
  57. }
  58. a:hover {
  59. color: #B01C6A;
  60. text-decoration: none;
  61. }
  62. a:active {
  63. text-decoration: none;
  64. }
  65. header {
  66. padding-top: 25px;
  67. padding-bottom: 25px;
  68. }
  69. header a,
  70. header a:hover {
  71. color: #fff;
  72. }
  73. header .social {
  74. display: none;
  75. }
  76. .content {
  77. padding: 0 30px 0 0;
  78. }
  79. .post img {
  80. padding-bottom: 10px;
  81. }
  82. .post-div {
  83. padding-bottom: 20px;
  84. }
  85. .content p {
  86. margin-top: 15px;
  87. }
  88. .navbar {
  89. position: static;
  90. min-height: 0;
  91. margin-bottom: 0;
  92. border: none;
  93. border-radius: 0;
  94. }
  95. .navbar-collapse {
  96. float: right;
  97. padding: 0 50px 0 0;
  98. }
  99. .navbar-nav {
  100. padding: 14px 0 0;
  101. }
  102. .navbar-brand, .navbar-nav>li>a {
  103. color: #EE2A7B;
  104. font-weight: 400;
  105. padding: 0;
  106. text-shadow: none;
  107. }
  108. .navbar-nav>li>a.active {
  109. border-bottom: 1px solid #07E656;
  110. }
  111. ul.nav li {
  112. background: none;
  113. padding-left: 30px;
  114. }
  115. .nav>li>a:hover, .nav>li>a:focus {
  116. color: #B01C6A;
  117. background-color: #111;
  118. }
  119. .navbar-toggle {
  120. position: static;
  121. padding: 9px 0;
  122. margin: 9px 0;
  123. width: 40px;
  124. height: 40px;
  125. }
  126. .navbar-toggle .icon-bar {
  127. background-color: #eee;
  128. width: 37px;
  129. height: 3px;
  130. }
  131. .navbar-toggle .icon-spacer {
  132. display: block;
  133. width: 37px;
  134. height: 6px;
  135. border-radius: 1px;
  136. }
  137. .social a {
  138. padding-right: 20px;
  139. }
  140. .sidebar {
  141. max-width: 325px;
  142. }
  143. .sidebar p {
  144. margin-bottom: 0;
  145. }
  146. .sidebar div {
  147. padding-top: 20px;
  148. }
  149. .sidebar div:nth-child(1) img {
  150. margin-top: 14px;
  151. }
  152. .sidebar img {
  153. margin-top: 7px;
  154. }
  155. #footer {
  156. background: none;
  157. margin-left: -30px;
  158. }
  159. #footer p {
  160. color: #666;
  161. font-size: .8em;
  162. }
  163. #footer a {
  164. color: #333;
  165. }
  166. #footer a:hover {
  167. color: #666;
  168. }
  169. a.button {
  170. display: block;
  171. float: left;
  172. width: 179px;
  173. padding: 12px 8px 12px 8px;
  174. margin-right: 14px;
  175. font-size: 15px;
  176. font-weight: bold;
  177. line-height: 25px;
  178. color: #303030;
  179. }
  180. a.button:hover {
  181. background: #111; /* Old browsers */
  182. }
  183. a.button span {
  184. display: block;
  185. height: 23px;
  186. padding-left: 50px;
  187. }
  188. code, pre {
  189. margin-bottom: 30px;
  190. font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal;
  191. font-size: 14px;
  192. color: #222;
  193. }
  194. code {
  195. padding: 0 3px;
  196. background-color: #f2f2f2;
  197. border: solid 1px #ddd;
  198. }
  199. pre {
  200. padding: 20px;
  201. overflow: auto;
  202. color: #f2f2f2;
  203. text-shadow: none;
  204. background: #303030;
  205. }
  206. pre code {
  207. padding: 0;
  208. color: #f2f2f2;
  209. background-color: #303030;
  210. border: none;
  211. }
  212. ul, ol, dl {
  213. margin-bottom: 20px;
  214. }
  215. /* COMMON STYLES */
  216. strong {
  217. font-weight: bold;
  218. }
  219. em {
  220. font-style: italic;
  221. }
  222. /* GENERAL ELEMENT TYPE STYLES */
  223. h1 {
  224. font-size: 3em;
  225. text-transform: uppercase;
  226. }
  227. h2 {
  228. font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, serif;
  229. font-size: 1.25em;
  230. font-weight: 400;
  231. line-height: 1.3;
  232. margin-bottom: 10px;
  233. }
  234. h2.program,
  235. h2.post {
  236. font-size: 1.5em;
  237. }
  238. h2.post {
  239. margin-bottom: 0;
  240. }
  241. h3 {
  242. margin: 5px 0;
  243. font-size: 1.15em;
  244. color: #00FFB1;
  245. font-weight: 400;
  246. }
  247. h3.program {
  248. margin: 20px 0 10px;
  249. }
  250. h4 {
  251. font-size: 1em;
  252. font-weight: bold;
  253. color: #BFD7E5;
  254. }
  255. h5 {
  256. font-size: 1em;
  257. color: #303030;
  258. }
  259. h6 {
  260. font-size: .8em;
  261. color: #303030;
  262. }
  263. .slant {
  264. font-size: 1.25em;
  265. font-weight: 300;
  266. }
  267. p {
  268. margin-bottom: 20px;
  269. font-weight: 300;
  270. }
  271. a {
  272. text-decoration: none;
  273. }
  274. p a {
  275. font-weight: 400;
  276. }
  277. blockquote {
  278. padding: 0 0 0 30px;
  279. margin-bottom: 20px;
  280. font-size: 1.6em;
  281. border-left: 10px solid #e9e9e9;
  282. }
  283. table {
  284. width: 100%;
  285. border-collapse: collapse;
  286. }
  287. tr {
  288. background: #333;
  289. }
  290. tr:nth-of-type(odd) {
  291. background: #444;
  292. }
  293. tr.light {
  294. background: #777;
  295. }
  296. th {
  297. background: #1D282F;
  298. color: white;
  299. text-align: center;
  300. vertical-align: middle;
  301. }
  302. td, th {
  303. padding: 6px;
  304. border: 1px solid #000;
  305. }
  306. td.workshop {
  307. background: #3B4751;
  308. }
  309. ul li {
  310. background: url("/assets/themes/images/bullet.png") no-repeat left 10px;
  311. padding-left: 10px;
  312. }
  313. .pagination>li,
  314. .pagination>li>a,
  315. .pagination>.disabled>a,
  316. .pagination>li>a:hover,
  317. .pagination>.disabled>a:hover {
  318. background: none;
  319. border: none;
  320. }
  321. ol li {
  322. list-style-position: inside;
  323. list-style: decimal;
  324. padding-left: 3px;
  325. }
  326. dl dt {
  327. color: #303030;
  328. }
  329. footer {
  330. padding-top: 20px;
  331. padding-bottom: 30px;
  332. margin-top: 40px;
  333. font-size: 13px;
  334. color: #aaa;
  335. }
  336. footer a {
  337. color: #666;
  338. }
  339. footer a:hover {
  340. color: #444;
  341. }
  342. header h1 {
  343. cursor: pointer;
  344. }
  345. .light {
  346. font-weight: 100;
  347. }
  348. .date {
  349. color: #bbb;
  350. margin-bottom: 20px;
  351. }
  352. a .title {
  353. color: #fff;
  354. }
  355. .archive-year iframe {
  356. padding: 20px 0;
  357. }
  358. /* MISC */
  359. .clearfix:after {
  360. display: block;
  361. height: 0;
  362. clear: both;
  363. visibility: hidden;
  364. content: '.';
  365. }
  366. .clearfix {display: inline-block;}
  367. * html .clearfix {height: 1%;}
  368. .clearfix {display: block;}
  369. /* #Media Queries
  370. ================================================== */
  371. /* Smaller than standard 960 (devices and browsers) */
  372. @media only screen and (max-width: 959px) {
  373. }
  374. /* Tablet Portrait size to standard 960 (devices and browsers) */
  375. @media only screen and (min-width: 768px) and (max-width: 959px) {
  376. .sidebar {
  377. max-width: none;
  378. padding: 30px 0;
  379. }
  380. .sidebar div {
  381. display: inline-block;
  382. vertical-align: top;
  383. padding-right: 50px;
  384. }
  385. .sidebar div img {
  386. margin-top: 20px;
  387. }
  388. .sidebar div:nth-child(2) img {
  389. margin-top: 0;
  390. }
  391. .sidebar .social {
  392. display: none;
  393. }
  394. header .social {
  395. display: block;
  396. }
  397. }
  398. /* All Mobile Sizes (devices and browser) */
  399. @media only screen and (max-width: 767px) {
  400. header {
  401. padding-top: 10px;
  402. padding-bottom: 10px;
  403. }
  404. .navbar {
  405. border-radius: 0;
  406. }
  407. .navbar-collapse {
  408. border-top: 1px solid rgb(97, 96, 96);
  409. float: none;
  410. padding: 0 15px;
  411. }
  412. .navbar-nav {
  413. padding: 0;
  414. }
  415. ul.nav li {
  416. padding-left: 0;
  417. }
  418. .navbar-brand, .navbar-nav>li>a {
  419. padding: 5px 0;
  420. }
  421. .sidebar {
  422. max-width: none;
  423. padding: 30px 0;
  424. }
  425. .sidebar div {
  426. display: inline-block;
  427. vertical-align: top;
  428. padding-right: 50px;
  429. }
  430. .sidebar .social {
  431. display: none;
  432. }
  433. header .social {
  434. display: block;
  435. }
  436. }
  437. /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
  438. @media only screen and (min-width: 480px) and (max-width: 767px) {
  439. body {
  440. font-size: 1.15em;
  441. }
  442. h1 {
  443. font-size: 2em;
  444. }
  445. header {
  446. padding-bottom: 30px;
  447. }
  448. .content {
  449. padding: 0;
  450. }
  451. #footer p {
  452. font-size: .5em;
  453. }
  454. .navbar-brand, .navbar-nav>li>a {
  455. padding: 15px 0;
  456. }
  457. }
  458. /* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
  459. @media only screen and (max-width: 479px) {
  460. body {
  461. font-size: 1.15em;
  462. }
  463. h1 {
  464. font-size: 1.75em;
  465. }
  466. .content {
  467. padding: 0;
  468. }
  469. #footer p {
  470. font-size: .5em;
  471. }
  472. }