style.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735
  1. /* http://meyerweb.com/eric/tools/css/reset/
  2. v2.0 | 20110126
  3. License: none (public domain)
  4. */
  5. @font-face {
  6. font-family: "Bebas Neue";
  7. font-style: normal;
  8. src: url(../fonts/BebasNeue-Regular.ttf) format("truetype");
  9. }
  10. html, body, div, span, applet, object, iframe,
  11. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  12. a, abbr, acronym, address, big, cite, code,
  13. del, dfn, em, img, ins, kbd, q, s, samp,
  14. small, strike, strong, sub, sup, tt, var,
  15. b, u, i, center,
  16. dl, dt, dd, ol, ul, li,
  17. fieldset, form, label, legend,
  18. table, caption, tbody, tfoot, thead, tr, th, td,
  19. article, aside, canvas, details, embed,
  20. figure, figcaption, footer, header, hgroup,
  21. menu, nav, output, ruby, section, summary,
  22. time, mark, audio, video {
  23. padding: 0;
  24. margin: 0;
  25. font: inherit;
  26. font-size: 100%;
  27. vertical-align: baseline;
  28. border: 0;
  29. }
  30. input {
  31. outline: 0;
  32. }
  33. /* HTML5 display-role reset for older browsers */
  34. article, aside, details, figcaption, figure,
  35. footer, header, hgroup, menu, nav, section {
  36. display: block;
  37. }
  38. body {
  39. line-height: 1;
  40. }
  41. ol, ul {
  42. list-style: none;
  43. }
  44. blockquote, q {
  45. quotes: none;
  46. }
  47. blockquote:before, blockquote:after,
  48. q:before, q:after {
  49. content: '';
  50. content: none;
  51. }
  52. /* LAYOUT STYLES */
  53. body {
  54. color: #eee;
  55. font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, serif;
  56. font-size: 1em;
  57. font-weight: 300;
  58. line-height: 1.5;
  59. background-color: #000;
  60. text-shadow: none;
  61. padding: 0 30px;
  62. }
  63. a {
  64. color: #EE2A7B;
  65. }
  66. a:hover {
  67. color: #B01C6A;
  68. text-decoration: none;
  69. }
  70. a:active {
  71. text-decoration: none;
  72. }
  73. header {
  74. padding-top: 25px;
  75. padding-bottom: 25px;
  76. }
  77. header a,
  78. header a:hover {
  79. color: #fff;
  80. }
  81. header .social {
  82. display: none;
  83. }
  84. .italic {
  85. font-style: italic;
  86. }
  87. .content {
  88. padding: 0 30px 0 0;
  89. }
  90. .post img {
  91. padding-bottom: 10px;
  92. }
  93. .post-div {
  94. padding-bottom: 20px;
  95. }
  96. .content p {
  97. margin-top: 15px;
  98. }
  99. .logo {
  100. width: 100%;
  101. height: 100%;
  102. max-width: 500px;
  103. }
  104. .spektrum {
  105. font-size: 2.3rem;
  106. font-family: "Bebas Neue", sans-serif;
  107. text-transform: uppercase;
  108. vertical-align: middle;
  109. color: #fff;
  110. letter-spacing: 0.8px;
  111. }
  112. .navbar {
  113. position: static;
  114. min-height: 0;
  115. margin-bottom: 0;
  116. border: none;
  117. border-radius: 0;
  118. }
  119. .navbar-collapse {
  120. float: right;
  121. padding: 0 50px 0 0;
  122. }
  123. .navbar-nav {
  124. padding: 14px 0 0;
  125. }
  126. .navbar-brand, .navbar-nav>li>a {
  127. color: #EE2A7B;
  128. font-weight: 400;
  129. padding: 0;
  130. text-shadow: none;
  131. }
  132. .navbar-nav>li>a.active {
  133. border-bottom: 1px solid #07E656;
  134. }
  135. ul.nav li {
  136. background: none;
  137. padding-left: 30px;
  138. }
  139. .nav>li>a:hover, .nav>li>a:focus {
  140. color: #B01C6A;
  141. background-color: #111;
  142. }
  143. .navbar-toggle {
  144. position: static;
  145. padding: 9px 0;
  146. margin: 9px 0;
  147. width: 40px;
  148. height: 40px;
  149. }
  150. .navbar-toggle .icon-bar {
  151. background-color: #eee;
  152. width: 37px;
  153. height: 3px;
  154. }
  155. .navbar-toggle .icon-spacer {
  156. display: block;
  157. width: 37px;
  158. height: 6px;
  159. border-radius: 1px;
  160. }
  161. .social a {
  162. color: #EE2A7B;
  163. padding-right: 20px;
  164. vertical-align: top;
  165. display: inline-block;
  166. }
  167. .social a.press {
  168. margin-top: 5px;
  169. }
  170. .sidebar {
  171. max-width: 325px;
  172. }
  173. .sidebar p {
  174. margin-bottom: 0;
  175. }
  176. .sidebar div {
  177. padding-top: 28px;
  178. }
  179. .sidebar div:first-child {
  180. padding-top: 0;
  181. }
  182. /*.sidebar div:nth-child(1) img {
  183. margin-top: 14px;
  184. }*/
  185. .sidebar .host img {
  186. vertical-align: middle;
  187. margin: 0 7px 0 0;
  188. }
  189. #footer {
  190. background: none;
  191. margin-left: -30px;
  192. }
  193. #footer p {
  194. color: #666;
  195. font-size: .8em;
  196. }
  197. #footer a {
  198. color: #333;
  199. }
  200. #footer a:hover {
  201. color: #666;
  202. }
  203. a.button {
  204. display: block;
  205. float: left;
  206. width: 179px;
  207. padding: 12px 8px 12px 8px;
  208. margin-right: 14px;
  209. font-size: 15px;
  210. font-weight: bold;
  211. line-height: 25px;
  212. color: #303030;
  213. }
  214. a.button:hover {
  215. background: #111; /* Old browsers */
  216. }
  217. a.button span {
  218. display: block;
  219. height: 23px;
  220. padding-left: 50px;
  221. }
  222. code, pre {
  223. margin-bottom: 30px;
  224. font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal;
  225. font-size: 14px;
  226. color: #222;
  227. }
  228. code {
  229. padding: 0 3px;
  230. background-color: #f2f2f2;
  231. border: solid 1px #ddd;
  232. }
  233. pre {
  234. padding: 20px;
  235. overflow: auto;
  236. color: #f2f2f2;
  237. text-shadow: none;
  238. background: #303030;
  239. }
  240. pre code {
  241. padding: 0;
  242. color: #f2f2f2;
  243. background-color: #303030;
  244. border: none;
  245. }
  246. ul, ol, dl {
  247. margin-bottom: 20px;
  248. }
  249. /* COMMON STYLES */
  250. strong {
  251. font-weight: bold;
  252. }
  253. em {
  254. font-style: italic;
  255. }
  256. /* GENERAL ELEMENT TYPE STYLES */
  257. h1 {
  258. font-size: 3em;
  259. text-transform: uppercase;
  260. }
  261. h2 {
  262. font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, serif;
  263. font-size: 1.25em;
  264. font-weight: 400;
  265. line-height: 1.3;
  266. margin-bottom: 10px;
  267. }
  268. h2.program,
  269. h2.post {
  270. font-size: 1.5em;
  271. }
  272. h2.post {
  273. margin-bottom: 0;
  274. }
  275. h3 {
  276. margin: 40px 0 5px;
  277. font-size: 1.15em;
  278. color: #00FFB1;
  279. font-weight: 400;
  280. }
  281. h3:first-child {
  282. margin-top: 5px;
  283. }
  284. /*h3.program {
  285. margin: 20px 0 10px;
  286. }*/
  287. h4 {
  288. font-size: 1em;
  289. font-weight: bold;
  290. color: #BFD7E5;
  291. }
  292. h5 {
  293. font-size: 1em;
  294. color: #303030;
  295. }
  296. h6 {
  297. font-size: .8em;
  298. color: #303030;
  299. }
  300. .slant {
  301. font-size: 1.25em;
  302. font-weight: 300;
  303. }
  304. p {
  305. font-weight: 300;
  306. letter-spacing: .015em;
  307. margin-bottom: 20px;
  308. }
  309. a {
  310. cursor: pointer;
  311. text-decoration: none;
  312. }
  313. p a {
  314. font-weight: 400;
  315. }
  316. blockquote {
  317. padding: 0 0 0 30px;
  318. margin-bottom: 20px;
  319. font-size: 1.6em;
  320. border-left: 10px solid #e9e9e9;
  321. }
  322. table {
  323. width: 100%;
  324. border-collapse: collapse;
  325. }
  326. tr {
  327. background: #333;
  328. }
  329. tr:nth-of-type(odd) {
  330. background: #444;
  331. }
  332. .sponsor-logos {
  333. padding-bottom: 30px;
  334. }
  335. .sponsor-logos tr {
  336. background: #000;
  337. }
  338. .sponsor-logos td {
  339. padding-left: 0;
  340. padding-right: 40px;
  341. padding-bottom: 50px;
  342. vertical-align: middle;
  343. }
  344. tr.light {
  345. background: #777;
  346. }
  347. tr.public {
  348. background: #27536D;
  349. }
  350. th {
  351. background: #1D282F;
  352. color: white;
  353. text-align: center;
  354. vertical-align: middle;
  355. }
  356. td, th {
  357. padding: 6px;
  358. border: 1px solid #000;
  359. }
  360. td.workshop {
  361. background: #3B4751;
  362. }
  363. ul li {
  364. background: url("/assets/themes/images/bullet.png") no-repeat left 10px;
  365. padding-left: 10px;
  366. }
  367. .pagination>li,
  368. .pagination>li>a,
  369. .pagination>.disabled>a,
  370. .pagination>li>a:hover,
  371. .pagination>.disabled>a:hover {
  372. background: none;
  373. border: none;
  374. }
  375. ol li {
  376. list-style-position: inside;
  377. list-style: decimal;
  378. padding-left: 3px;
  379. }
  380. dl dt {
  381. color: #303030;
  382. }
  383. footer {
  384. padding-top: 20px;
  385. padding-bottom: 30px;
  386. margin-top: 40px;
  387. font-size: 13px;
  388. color: #aaa;
  389. }
  390. footer a {
  391. color: #666;
  392. }
  393. footer a:hover {
  394. color: #444;
  395. }
  396. header h1 {
  397. cursor: pointer;
  398. }
  399. .light {
  400. font-weight: 100;
  401. }
  402. .date {
  403. color: #bbb;
  404. margin-bottom: 20px;
  405. }
  406. a .title {
  407. color: #fff;
  408. }
  409. .archive-year iframe {
  410. padding: 20px 0;
  411. }
  412. .donate {
  413. padding-bottom: 10px;
  414. }
  415. .donate a {
  416. font-weight: 600;
  417. border-bottom: solid 1px;
  418. padding-bottom: 2px;
  419. }
  420. .tickets {
  421. color: #2aeee5;
  422. font-size: 20px;
  423. line-height: 23px;
  424. font-weight: 500;
  425. }
  426. .supporters {
  427. padding-bottom: 30px;
  428. padding-top: 20px;
  429. }
  430. .supporters ul {
  431. display: inline-block;
  432. margin-bottom: 0;
  433. vertical-align: top;
  434. padding-right: 25px;
  435. max-width: 33%;
  436. }
  437. .shop .item {
  438. padding: 10px 40px 40px;
  439. text-align: center;
  440. }
  441. .item > img {
  442. padding-bottom: 25px;
  443. }
  444. .item tr {
  445. background: none;
  446. }
  447. .item input {
  448. padding: 10px 0;
  449. }
  450. /* MISC */
  451. .clearfix:after {
  452. display: block;
  453. height: 0;
  454. clear: both;
  455. visibility: hidden;
  456. content: '.';
  457. }
  458. .clearfix {display: inline-block;}
  459. * html .clearfix {height: 1%;}
  460. .clearfix {display: block;}
  461. /* #Media Queries
  462. ================================================== */
  463. /* Smaller than standard 960 (devices and browsers) */
  464. @media only screen and (max-width: 959px) {
  465. .supporters ul {
  466. display: block;
  467. max-width: 100%;
  468. }
  469. }
  470. /* Tablet Portrait size to standard 960 (devices and browsers) */
  471. @media only screen and (min-width: 768px) and (max-width: 959px) {
  472. .navbar-collapse {
  473. float: left;
  474. }
  475. ul.nav li:first-child {
  476. padding-left: 0;
  477. }
  478. .content img {
  479. width: 100%;
  480. max-width: 768px;
  481. }
  482. .content .profile img {
  483. max-width: 400px;
  484. }
  485. .sidebar {
  486. max-width: none;
  487. padding: 30px 0;
  488. }
  489. .sidebar div {
  490. display: block;
  491. vertical-align: top;
  492. padding-right: 50px;
  493. }
  494. .sidebar div img {
  495. margin-top: 20px;
  496. }
  497. .sidebar div:nth-child(2) img {
  498. margin-top: 0;
  499. }
  500. .sidebar .social {
  501. display: none;
  502. }
  503. header .social {
  504. display: block;
  505. }
  506. .content .sponsor-logos img {
  507. max-width: 150px;
  508. }
  509. .content .sponsor-logos img.small {
  510. max-width: 100px;
  511. }
  512. .content .sponsor-logos img.wide {
  513. max-width: 250px;
  514. }
  515. .content .sponsor-logos td {
  516. padding: 12px 24px 12px 0;
  517. }
  518. }
  519. /* All Mobile Sizes (devices and browser) */
  520. @media only screen and (max-width: 767px) {
  521. hr {
  522. margin-bottom: 50px;
  523. }
  524. header {
  525. padding-top: 10px;
  526. padding-bottom: 10px;
  527. }
  528. .content img {
  529. width: 100%;
  530. }
  531. .content .profile img {
  532. max-width: 400px;
  533. }
  534. .navbar {
  535. border-radius: 0;
  536. }
  537. .navbar-collapse {
  538. border-top: 1px solid rgb(97, 96, 96);
  539. float: none;
  540. padding: 0 15px;
  541. }
  542. .navbar-nav {
  543. padding: 0;
  544. }
  545. ul.nav li {
  546. padding-left: 0;
  547. }
  548. .navbar-brand, .navbar-nav>li>a {
  549. padding: 5px 0;
  550. }
  551. .navbar-nav>li>a.active {
  552. border-bottom: none;
  553. background: #07e65657;
  554. }
  555. .sidebar {
  556. max-width: none;
  557. padding: 30px 0;
  558. }
  559. .sidebar div {
  560. display: inline-block;
  561. vertical-align: top;
  562. padding-right: 50px;
  563. }
  564. .sidebar .social {
  565. display: none;
  566. }
  567. header .social {
  568. display: block;
  569. }
  570. .content .sponsor-logos img {
  571. max-width: 150px;
  572. }
  573. .content .sponsor-logos td {
  574. padding: 12px 24px 12px 0;
  575. }
  576. .shop .item {
  577. padding: 0;
  578. }
  579. .item > img {
  580. padding-bottom: 30px;
  581. }
  582. .item input {
  583. padding: 15px 0;
  584. }
  585. }
  586. /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
  587. @media only screen and (min-width: 480px) and (max-width: 767px) {
  588. body {
  589. font-size: 1.15em;
  590. }
  591. h1 {
  592. font-size: 2em;
  593. }
  594. header {
  595. padding-bottom: 30px;
  596. }
  597. .content img {
  598. width: 100%;
  599. }
  600. .content .profile img {
  601. max-width: 400px;
  602. }
  603. .content {
  604. padding: 0;
  605. }
  606. .sidebar {
  607. max-width: 300px;
  608. }
  609. #footer p {
  610. font-size: .5em;
  611. }
  612. .navbar-brand, .navbar-nav>li>a {
  613. padding: 5px 0;
  614. }
  615. .content .sponsor-logos img {
  616. max-width: 120px;
  617. padding-right: 30px;
  618. }
  619. }
  620. /* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
  621. @media only screen and (max-width: 479px) {
  622. body {
  623. font-size: 1.15em;
  624. }
  625. h1 {
  626. font-size: 1.75em;
  627. }
  628. .content img {
  629. width: 100%;
  630. }
  631. .content .profile img {
  632. max-width: 400px;
  633. }
  634. .content {
  635. padding: 0;
  636. }
  637. #footer p {
  638. font-size: .5em;
  639. }
  640. .content .sponsor-logos img {
  641. padding: 30px 30px 10px 0;
  642. max-width: 50%;
  643. }
  644. .content .sponsor-logos td {
  645. display: table-row;
  646. }
  647. }