style.css 7.9 KB

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