style.css 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606
  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: 40px;
  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. tr.public {
  311. background: #27536D;
  312. }
  313. th {
  314. background: #1D282F;
  315. color: white;
  316. text-align: center;
  317. vertical-align: middle;
  318. }
  319. td, th {
  320. padding: 6px;
  321. border: 1px solid #000;
  322. }
  323. td.workshop {
  324. background: #3B4751;
  325. }
  326. ul li {
  327. background: url("/archives/2016/assets/themes/images/bullet.png") no-repeat left 10px;
  328. padding-left: 10px;
  329. }
  330. .pagination>li,
  331. .pagination>li>a,
  332. .pagination>.disabled>a,
  333. .pagination>li>a:hover,
  334. .pagination>.disabled>a:hover {
  335. background: none;
  336. border: none;
  337. }
  338. ol li {
  339. list-style-position: inside;
  340. list-style: decimal;
  341. padding-left: 3px;
  342. }
  343. dl dt {
  344. color: #303030;
  345. }
  346. footer {
  347. padding-top: 20px;
  348. padding-bottom: 30px;
  349. margin-top: 40px;
  350. font-size: 13px;
  351. color: #aaa;
  352. }
  353. footer a {
  354. color: #666;
  355. }
  356. footer a:hover {
  357. color: #444;
  358. }
  359. header h1 {
  360. cursor: pointer;
  361. }
  362. .light {
  363. font-weight: 100;
  364. }
  365. .date {
  366. color: #bbb;
  367. margin-bottom: 20px;
  368. }
  369. a .title {
  370. color: #fff;
  371. }
  372. .archive-year iframe {
  373. padding: 20px 0;
  374. }
  375. .donate {
  376. padding-bottom: 10px;
  377. }
  378. .donate a {
  379. font-weight: 600;
  380. border-bottom: solid 1px;
  381. padding-bottom: 2px;
  382. }
  383. a.tickets {
  384. font-size: 25px;
  385. font-weight: 500;
  386. }
  387. /* MISC */
  388. .clearfix:after {
  389. display: block;
  390. height: 0;
  391. clear: both;
  392. visibility: hidden;
  393. content: '.';
  394. }
  395. .clearfix {display: inline-block;}
  396. * html .clearfix {height: 1%;}
  397. .clearfix {display: block;}
  398. /* #Media Queries
  399. ================================================== */
  400. /* Smaller than standard 960 (devices and browsers) */
  401. @media only screen and (max-width: 959px) {
  402. }
  403. /* Tablet Portrait size to standard 960 (devices and browsers) */
  404. @media only screen and (min-width: 768px) and (max-width: 959px) {
  405. .content img {
  406. width: 100%;
  407. max-width: 768px;
  408. }
  409. .content .profile img {
  410. max-width: 400px;
  411. }
  412. .sidebar {
  413. max-width: none;
  414. padding: 30px 0;
  415. }
  416. .sidebar div {
  417. display: inline-block;
  418. vertical-align: top;
  419. padding-right: 50px;
  420. }
  421. .sidebar div img {
  422. margin-top: 20px;
  423. }
  424. .sidebar div:nth-child(2) img {
  425. margin-top: 0;
  426. }
  427. .sidebar .social {
  428. display: none;
  429. }
  430. header .social {
  431. display: block;
  432. }
  433. }
  434. /* All Mobile Sizes (devices and browser) */
  435. @media only screen and (max-width: 767px) {
  436. header {
  437. padding-top: 10px;
  438. padding-bottom: 10px;
  439. }
  440. .content img {
  441. width: 100%;
  442. }
  443. .content .profile img {
  444. max-width: 400px;
  445. }
  446. .navbar {
  447. border-radius: 0;
  448. }
  449. .navbar-collapse {
  450. border-top: 1px solid rgb(97, 96, 96);
  451. float: none;
  452. padding: 0 15px;
  453. }
  454. .navbar-nav {
  455. padding: 0;
  456. }
  457. ul.nav li {
  458. padding-left: 0;
  459. }
  460. .navbar-brand, .navbar-nav>li>a {
  461. padding: 5px 0;
  462. }
  463. .sidebar {
  464. max-width: none;
  465. padding: 30px 0;
  466. }
  467. .sidebar div {
  468. display: inline-block;
  469. vertical-align: top;
  470. padding-right: 50px;
  471. }
  472. .sidebar .social {
  473. display: none;
  474. }
  475. header .social {
  476. display: block;
  477. }
  478. }
  479. /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
  480. @media only screen and (min-width: 480px) and (max-width: 767px) {
  481. body {
  482. font-size: 1.15em;
  483. }
  484. h1 {
  485. font-size: 2em;
  486. }
  487. header {
  488. padding-bottom: 30px;
  489. }
  490. .content img {
  491. width: 100%;
  492. }
  493. .content .profile img {
  494. max-width: 400px;
  495. }
  496. .content {
  497. padding: 0;
  498. }
  499. .sidebar {
  500. max-width: 300px;
  501. }
  502. #footer p {
  503. font-size: .5em;
  504. }
  505. .navbar-brand, .navbar-nav>li>a {
  506. padding: 15px 0;
  507. }
  508. }
  509. /* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
  510. @media only screen and (max-width: 479px) {
  511. body {
  512. font-size: 1.15em;
  513. }
  514. h1 {
  515. font-size: 1.75em;
  516. }
  517. .content img {
  518. width: 100%;
  519. }
  520. .content .profile img {
  521. max-width: 400px;
  522. }
  523. .content {
  524. padding: 0;
  525. }
  526. #footer p {
  527. font-size: .5em;
  528. }
  529. }