style.css 8.5 KB

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