style.css 7.6 KB

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