style.css 7.1 KB

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