style.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746
  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: 20px 0 20px 30px;
  248. }
  249. /* COMMON STYLES */
  250. strong {
  251. font-weight: bold;
  252. letter-spacing: 0.04em;
  253. }
  254. strong.blue {
  255. color: #BFD7E5;
  256. }
  257. em {
  258. font-style: italic;
  259. }
  260. /* GENERAL ELEMENT TYPE STYLES */
  261. h1 {
  262. font-size: 3em;
  263. text-transform: uppercase;
  264. }
  265. h2 {
  266. font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, serif;
  267. font-size: 1.25em;
  268. font-weight: 400;
  269. line-height: 1.3;
  270. margin-bottom: 10px;
  271. }
  272. h2.program,
  273. h2.post {
  274. font-size: 1.5em;
  275. }
  276. h2.post {
  277. margin-bottom: 0;
  278. }
  279. h3 {
  280. margin: 40px 0 5px;
  281. font-size: 1.15em;
  282. color: #00FFB1;
  283. font-weight: 400;
  284. }
  285. h3:first-child {
  286. margin-top: 5px;
  287. }
  288. /*h3.program {
  289. margin: 20px 0 10px;
  290. }*/
  291. h4 {
  292. font-size: 1em;
  293. font-weight: bold;
  294. color: #BFD7E5;
  295. letter-spacing: 0.05em;
  296. }
  297. h4.note {
  298. /*color: #a53cff;*/
  299. }
  300. h5 {
  301. font-size: 1em;
  302. color: #303030;
  303. }
  304. h6 {
  305. font-size: .8em;
  306. color: #303030;
  307. }
  308. .slant {
  309. font-size: 1.25em;
  310. font-weight: 300;
  311. }
  312. p {
  313. font-size: 1em;
  314. font-weight: 300;
  315. letter-spacing: .025em;
  316. line-height: 1.5em;
  317. }
  318. a {
  319. cursor: pointer;
  320. text-decoration: none;
  321. }
  322. /*p a {
  323. font-weight: 400;
  324. }*/
  325. blockquote {
  326. padding: 0 0 0 30px;
  327. margin-bottom: 20px;
  328. font-size: 1.6em;
  329. border-left: 10px solid #e9e9e9;
  330. }
  331. table {
  332. width: 100%;
  333. border-collapse: collapse;
  334. }
  335. tr {
  336. background: #333;
  337. }
  338. tr:nth-of-type(odd) {
  339. background: #444;
  340. }
  341. .sponsor-logos {
  342. padding-bottom: 30px;
  343. }
  344. .sponsor-logos tr {
  345. background: #000;
  346. }
  347. .sponsor-logos td {
  348. padding-left: 0;
  349. padding-right: 40px;
  350. padding-bottom: 50px;
  351. vertical-align: middle;
  352. }
  353. tr.light {
  354. background: #777;
  355. }
  356. tr.public {
  357. background: #27536D;
  358. }
  359. th {
  360. background: #1D282F;
  361. color: white;
  362. text-align: center;
  363. vertical-align: middle;
  364. }
  365. td, th {
  366. padding: 6px;
  367. border: 1px solid #000;
  368. }
  369. td.workshop {
  370. background: #3B4751;
  371. }
  372. ul li {
  373. background: url("/assets/themes/images/bullet.png") no-repeat left 10px;
  374. padding-left: 10px;
  375. }
  376. .pagination>li,
  377. .pagination>li>a,
  378. .pagination>.disabled>a,
  379. .pagination>li>a:hover,
  380. .pagination>.disabled>a:hover {
  381. background: none;
  382. border: none;
  383. }
  384. ol li {
  385. list-style-position: inside;
  386. list-style: decimal;
  387. padding-left: 3px;
  388. }
  389. dl dt {
  390. color: #303030;
  391. }
  392. footer {
  393. padding-top: 20px;
  394. padding-bottom: 30px;
  395. margin-top: 40px;
  396. font-size: 13px;
  397. color: #aaa;
  398. }
  399. footer a {
  400. color: #666;
  401. }
  402. footer a:hover {
  403. color: #444;
  404. }
  405. header h1 {
  406. cursor: pointer;
  407. }
  408. .light {
  409. font-weight: 100;
  410. }
  411. .date {
  412. color: #bbb;
  413. margin-bottom: 20px;
  414. }
  415. a .title {
  416. color: #fff;
  417. }
  418. .archive-year iframe {
  419. padding: 20px 0;
  420. }
  421. .donate {
  422. padding-bottom: 10px;
  423. }
  424. .donate a {
  425. font-weight: 600;
  426. border-bottom: solid 1px;
  427. padding-bottom: 2px;
  428. }
  429. .tickets {
  430. color: #2aeee5;
  431. font-size: 20px;
  432. line-height: 23px;
  433. font-weight: 500;
  434. }
  435. .supporters {
  436. padding-bottom: 30px;
  437. padding-top: 20px;
  438. }
  439. .supporters ul {
  440. display: inline-block;
  441. margin-bottom: 0;
  442. vertical-align: top;
  443. padding-right: 25px;
  444. max-width: 33%;
  445. }
  446. .shop .item {
  447. padding: 10px 40px 40px;
  448. text-align: center;
  449. }
  450. .item > img {
  451. padding-bottom: 25px;
  452. }
  453. .item tr {
  454. background: none;
  455. }
  456. .item input {
  457. padding: 10px 0;
  458. }
  459. /* MISC */
  460. .clearfix:after {
  461. display: block;
  462. height: 0;
  463. clear: both;
  464. visibility: hidden;
  465. content: '.';
  466. }
  467. .clearfix {display: inline-block;}
  468. * html .clearfix {height: 1%;}
  469. .clearfix {display: block;}
  470. /* #Media Queries
  471. ================================================== */
  472. /* Smaller than standard 960 (devices and browsers) */
  473. @media only screen and (max-width: 959px) {
  474. .supporters ul {
  475. display: block;
  476. max-width: 100%;
  477. }
  478. }
  479. /* Tablet Portrait size to standard 960 (devices and browsers) */
  480. @media only screen and (min-width: 768px) and (max-width: 959px) {
  481. .navbar-collapse {
  482. float: left;
  483. }
  484. ul.nav li:first-child {
  485. padding-left: 0;
  486. }
  487. .content img {
  488. width: 100%;
  489. max-width: 768px;
  490. }
  491. .content .profile img {
  492. max-width: 400px;
  493. }
  494. .sidebar {
  495. max-width: none;
  496. padding: 30px 0;
  497. }
  498. .sidebar div {
  499. display: block;
  500. vertical-align: top;
  501. padding-right: 50px;
  502. }
  503. .sidebar div img {
  504. margin-top: 20px;
  505. }
  506. .sidebar div:nth-child(2) img {
  507. margin-top: 0;
  508. }
  509. .sidebar .social {
  510. display: none;
  511. }
  512. header .social {
  513. display: block;
  514. }
  515. .content .sponsor-logos img {
  516. max-width: 150px;
  517. }
  518. .content .sponsor-logos img.small {
  519. max-width: 100px;
  520. }
  521. .content .sponsor-logos img.wide {
  522. max-width: 250px;
  523. }
  524. .content .sponsor-logos td {
  525. padding: 12px 24px 12px 0;
  526. }
  527. }
  528. /* All Mobile Sizes (devices and browser) */
  529. @media only screen and (max-width: 767px) {
  530. hr {
  531. margin-bottom: 50px;
  532. }
  533. header {
  534. padding-top: 10px;
  535. padding-bottom: 10px;
  536. }
  537. .content img {
  538. width: 100%;
  539. }
  540. .content .profile img {
  541. max-width: 400px;
  542. }
  543. .navbar {
  544. border-radius: 0;
  545. }
  546. .navbar-collapse {
  547. border-top: 1px solid rgb(97, 96, 96);
  548. float: none;
  549. padding: 0 15px;
  550. }
  551. .navbar-nav {
  552. padding: 0;
  553. }
  554. ul.nav li {
  555. padding-left: 0;
  556. }
  557. .navbar-brand, .navbar-nav>li>a {
  558. padding: 5px 0;
  559. }
  560. .navbar-nav>li>a.active {
  561. border-bottom: none;
  562. background: #07e65657;
  563. }
  564. .sidebar {
  565. max-width: none;
  566. padding: 30px 0;
  567. }
  568. .sidebar div {
  569. display: inline-block;
  570. vertical-align: top;
  571. padding-right: 50px;
  572. }
  573. .sidebar .social {
  574. display: none;
  575. }
  576. header .social {
  577. display: block;
  578. }
  579. .content .sponsor-logos img {
  580. max-width: 150px;
  581. }
  582. .content .sponsor-logos td {
  583. padding: 12px 24px 12px 0;
  584. }
  585. .shop .item {
  586. padding: 0;
  587. }
  588. .item > img {
  589. padding-bottom: 30px;
  590. }
  591. .item input {
  592. padding: 15px 0;
  593. }
  594. }
  595. /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
  596. @media only screen and (min-width: 480px) and (max-width: 767px) {
  597. body {
  598. font-size: 1.15em;
  599. }
  600. h1 {
  601. font-size: 2em;
  602. }
  603. header {
  604. padding-bottom: 30px;
  605. }
  606. .content img {
  607. width: 100%;
  608. }
  609. .content .profile img {
  610. max-width: 400px;
  611. }
  612. .content {
  613. padding: 0;
  614. }
  615. .sidebar {
  616. max-width: 300px;
  617. }
  618. #footer p {
  619. font-size: .5em;
  620. }
  621. .navbar-brand, .navbar-nav>li>a {
  622. padding: 5px 0;
  623. }
  624. .content .sponsor-logos img {
  625. max-width: 120px;
  626. padding-right: 30px;
  627. }
  628. }
  629. /* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
  630. @media only screen and (max-width: 479px) {
  631. body {
  632. font-size: 1.15em;
  633. }
  634. h1 {
  635. font-size: 1.75em;
  636. }
  637. .content img {
  638. width: 100%;
  639. }
  640. .content .profile img {
  641. max-width: 400px;
  642. }
  643. .content {
  644. padding: 0;
  645. }
  646. #footer p {
  647. font-size: .5em;
  648. }
  649. .content .sponsor-logos img {
  650. padding: 30px 30px 10px 0;
  651. max-width: 50%;
  652. }
  653. .content .sponsor-logos td {
  654. display: table-row;
  655. }
  656. }