solarized-light.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. article,
  2. aside,
  3. details,
  4. figcaption,
  5. figure,
  6. footer,
  7. header,
  8. hgroup,
  9. nav,
  10. section,
  11. summary {
  12. display: block;
  13. }
  14. audio,
  15. canvas,
  16. video {
  17. display: inline-block;
  18. }
  19. audio:not([controls]) {
  20. display: none;
  21. height: 0;
  22. }
  23. [hidden] {
  24. display: none;
  25. }
  26. html {
  27. font-family: sans-serif;
  28. -webkit-text-size-adjust: 100%;
  29. -ms-text-size-adjust: 100%;
  30. }
  31. body {
  32. margin: 0;
  33. }
  34. a:focus {
  35. outline: thin dotted;
  36. }
  37. a:active,
  38. a:hover {
  39. outline: 0;
  40. }
  41. h1 {
  42. font-size: 2em;
  43. }
  44. abbr[title] {
  45. border-bottom: 1px dotted;
  46. }
  47. b,
  48. strong {
  49. font-weight: bold;
  50. }
  51. dfn {
  52. font-style: italic;
  53. }
  54. mark {
  55. background: #ff0;
  56. color: #000;
  57. }
  58. code,
  59. kbd,
  60. pre,
  61. samp {
  62. font-family: monospace, serif;
  63. font-size: 1em;
  64. }
  65. pre {
  66. white-space: pre-wrap;
  67. word-wrap: break-word;
  68. }
  69. q {
  70. quotes: "\201C" "\201D" "\2018" "\2019";
  71. }
  72. small {
  73. font-size: 80%;
  74. }
  75. sub,
  76. sup {
  77. font-size: 75%;
  78. line-height: 0;
  79. position: relative;
  80. vertical-align: baseline;
  81. }
  82. sup {
  83. top: -0.5em;
  84. }
  85. sub {
  86. bottom: -0.25em;
  87. }
  88. img {
  89. border: 0;
  90. }
  91. svg:not(:root) {
  92. overflow: hidden;
  93. }
  94. figure {
  95. margin: 0;
  96. }
  97. fieldset {
  98. border: 1px solid #c0c0c0;
  99. margin: 0 2px;
  100. padding: 0.35em 0.625em 0.75em;
  101. }
  102. legend {
  103. border: 0;
  104. padding: 0;
  105. }
  106. button,
  107. input,
  108. select,
  109. textarea {
  110. font-family: inherit;
  111. font-size: 100%;
  112. margin: 0;
  113. }
  114. button,
  115. input {
  116. line-height: normal;
  117. }
  118. button,
  119. html input[type="button"],
  120. input[type="reset"],
  121. input[type="submit"] {
  122. -webkit-appearance: button;
  123. cursor: pointer;
  124. }
  125. button[disabled],
  126. input[disabled] {
  127. cursor: default;
  128. }
  129. input[type="checkbox"],
  130. input[type="radio"] {
  131. box-sizing: border-box;
  132. padding: 0;
  133. }
  134. input[type="search"] {
  135. -webkit-appearance: textfield;
  136. -moz-box-sizing: content-box;
  137. -webkit-box-sizing: content-box;
  138. box-sizing: content-box;
  139. }
  140. input[type="search"]::-webkit-search-cancel-button,
  141. input[type="search"]::-webkit-search-decoration {
  142. -webkit-appearance: none;
  143. }
  144. button::-moz-focus-inner,
  145. input::-moz-focus-inner {
  146. border: 0;
  147. padding: 0;
  148. }
  149. textarea {
  150. overflow: auto;
  151. vertical-align: top;
  152. }
  153. table {
  154. border-collapse: collapse;
  155. border-spacing: 0;
  156. }
  157. html {
  158. font-family: 'PT Sans', sans-serif;
  159. }
  160. pre,
  161. code {
  162. font-family: 'Inconsolata', sans-serif;
  163. }
  164. h1,
  165. h2,
  166. h3,
  167. h4,
  168. h5,
  169. h6 {
  170. font-family: 'PT Sans Narrow', sans-serif;
  171. font-weight: 700;
  172. }
  173. html {
  174. background-color: #fdf6e3;
  175. color: #657b83;
  176. margin: 1em;
  177. }
  178. code {
  179. background-color: #eee8d5;
  180. padding: 2px;
  181. }
  182. a {
  183. color: #b58900;
  184. }
  185. a:visited {
  186. color: #cb4b16;
  187. }
  188. a:hover {
  189. color: #cb4b16;
  190. }
  191. h1 {
  192. color: #d33682;
  193. }
  194. h2,
  195. h3,
  196. h4,
  197. h5,
  198. h6 {
  199. color: #859900;
  200. }
  201. pre {
  202. background-color: #fdf6e3;
  203. color: #657b83;
  204. border: 1pt solid #93a1a1;
  205. padding: 1em;
  206. box-shadow: 5pt 5pt 8pt #eee8d5;
  207. }
  208. pre code {
  209. background-color: #fdf6e3;
  210. }
  211. h1 {
  212. font-size: 2.8em;
  213. }
  214. h2 {
  215. font-size: 2.4em;
  216. }
  217. h3 {
  218. font-size: 1.8em;
  219. }
  220. h4 {
  221. font-size: 1.4em;
  222. }
  223. h5 {
  224. font-size: 1.3em;
  225. }
  226. h6 {
  227. font-size: 1.15em;
  228. }
  229. .tag {
  230. background-color: #eee8d5;
  231. color: #d33682;
  232. padding: 0 0.2em;
  233. }
  234. .todo,
  235. .next,
  236. .done {
  237. color: #fdf6e3;
  238. background-color: #dc322f;
  239. padding: 0 0.2em;
  240. }
  241. .tag {
  242. -webkit-border-radius: 0.35em;
  243. -moz-border-radius: 0.35em;
  244. border-radius: 0.35em;
  245. }
  246. .TODO {
  247. -webkit-border-radius: 0.2em;
  248. -moz-border-radius: 0.2em;
  249. border-radius: 0.2em;
  250. background-color: #2aa198;
  251. }
  252. .NEXT {
  253. -webkit-border-radius: 0.2em;
  254. -moz-border-radius: 0.2em;
  255. border-radius: 0.2em;
  256. background-color: #268bd2;
  257. }
  258. .ACTIVE {
  259. -webkit-border-radius: 0.2em;
  260. -moz-border-radius: 0.2em;
  261. border-radius: 0.2em;
  262. background-color: #268bd2;
  263. }
  264. .DONE {
  265. -webkit-border-radius: 0.2em;
  266. -moz-border-radius: 0.2em;
  267. border-radius: 0.2em;
  268. background-color: #859900;
  269. }
  270. .WAITING {
  271. -webkit-border-radius: 0.2em;
  272. -moz-border-radius: 0.2em;
  273. border-radius: 0.2em;
  274. foreground-color: #cb4b16;
  275. }
  276. .HOLD {
  277. -webkit-border-radius: 0.2em;
  278. -moz-border-radius: 0.2em;
  279. border-radius: 0.2em;
  280. foreground-color: #d33682;
  281. }
  282. .NOTE {
  283. -webkit-border-radius: 0.2em;
  284. -moz-border-radius: 0.2em;
  285. border-radius: 0.2em;
  286. foreground-color: #d33682;
  287. }
  288. .CANCELLED {
  289. -webkit-border-radius: 0.2em;
  290. -moz-border-radius: 0.2em;
  291. border-radius: 0.2em;
  292. foreground-color: #859900;
  293. }