zerobin.css 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  1. /* ZeroBin 0.20 - http://sebsauvage.net/wiki/doku.php?id=php:zerobin */
  2. /* CSS Reset from YUI 3.4.1 (build 4118) - Copyright 2011 Yahoo! Inc. All rights reserved.
  3. Licensed under the BSD License. - http://yuilibrary.com/license/ */
  4. html{color:#000;background:#fff}body,div,dl,dt,dd,ul,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{font-size:100%;}legend{color:#000}
  5. html {
  6. background-color: #455463;
  7. color: #fff;
  8. min-height: 100%;
  9. background-image: linear-gradient(bottom, #0f1823 0, #455463 100%);
  10. background-image: -o-linear-gradient(bottom, #0f1823 0, #455463 100%);
  11. background-image: -moz-linear-gradient(bottom, #0f1823 0, #455463 100%);
  12. background-image: -webkit-linear-gradient(bottom, #0f1823 0, #455463 100%);
  13. background-image: -ms-linear-gradient(bottom, #0f1823 0, #455463 100%);
  14. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0f1823), color-stop(1, #455463));
  15. }
  16. body {
  17. font-family: Helvetica, Arial, sans-serif;
  18. font-size: 0.9em;
  19. margin-bottom: 15px;
  20. padding-left: 60px;
  21. padding-right: 60px;
  22. }
  23. a { color: #0f388f; }
  24. h1.title {
  25. font-size: 3.5em;
  26. font-weight: bold;
  27. color: #000;
  28. position: relative;
  29. display: inline;
  30. cursor: pointer;
  31. }
  32. h1.title:before {
  33. content: attr(title);
  34. position: absolute;
  35. color: rgba(255,255,255,0.15);
  36. top: 1px;
  37. left: 1px;
  38. cursor: pointer;
  39. }
  40. h2.title {
  41. color: #000;
  42. font-size: 1em;
  43. display: inline;
  44. font-style: italic;
  45. font-weight: bold;
  46. position: relative;
  47. bottom: 8px;
  48. }
  49. h3.title {
  50. color: #94a3b4;
  51. font-size: 0.7em;
  52. display: inline;
  53. margin-top: 10px;
  54. position: relative;
  55. bottom: 8px;
  56. }
  57. #aboutbox {
  58. color: #94a3b4;
  59. padding: 4px 8px 4px 16px;
  60. position: relative;
  61. top: 10px;
  62. border-left: 2px solid #94a3b4;
  63. float: right;
  64. width: 60%;
  65. }
  66. #aboutbox a { color: #94a3b4; }
  67. #message, #cleartext, #prettymessage, .replymessage {
  68. clear: both;
  69. color: #000;
  70. background-color: #fff;
  71. font-size: 9pt;
  72. border: 1px solid #28343F;
  73. box-sizing: border-box;
  74. -webkit-box-sizing: border-box;
  75. -moz-box-sizing: border-box;
  76. -ms-box-sizing: border-box;
  77. -o-box-sizing: border-box;
  78. width: 100%;
  79. }
  80. #message, .replymessage {
  81. padding: 5px;
  82. white-space: pre-wrap;
  83. font-family: Consolas, "Lucida Console", "DejaVu Sans Mono", Monaco, monospace;
  84. }
  85. #status {
  86. clear: both;
  87. padding: 5px 10px;
  88. }
  89. #pasteresult {
  90. background-color: #1F2833;
  91. color: #fff;
  92. padding: 4px 12px;
  93. clear: both;
  94. -moz-box-shadow: inset 0 2px 2px #000;
  95. -webkit-box-shadow: inset 0 2px 2px #000;
  96. box-shadow: inset 0 2px 2px #000;
  97. }
  98. #pasteresult a { color: #fff; }
  99. #pasteresult button { margin-left: 11px; }
  100. #deletelink { float: right; }
  101. #toolbar, #status { margin-bottom: 5px; }
  102. #copyhint { color: #666; font-size: 0.85em; }
  103. button, .button, #expiration, #formatter {
  104. color: #fff;
  105. background-color: #323b47;
  106. background-repeat: no-repeat;
  107. background-position: center left;
  108. padding: 4px 8px;
  109. font-size: 1em;
  110. margin-right: 5px;
  111. display: inline;
  112. background-image: linear-gradient(bottom, #323b47 0, #51606e 100%);
  113. background-image: -o-linear-gradient(bottom, #323b47 0, #51606e 100%);
  114. background-image: -moz-linear-gradient(bottom, #323b47 0, #51606e 100%);
  115. background-image: -webkit-linear-gradient(bottom, #323b47 0, #51606e 100%);
  116. background-image: -ms-linear-gradient(bottom, #323b47 0, #51606e 100%);
  117. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #323b47), color-stop(1, #51606e));
  118. border: 1px solid #28343F;
  119. -moz-box-shadow: inset 0 1px 2px #647384;
  120. -webkit-box-shadow: inset 0 1px 2px #647384;
  121. box-shadow: inset 0 1px 2px #647384;
  122. -webkit-border-radius: 3px;
  123. -moz-border-radius: 3px;
  124. border-radius: 3px;
  125. -moz-background-clip: padding;
  126. -webkit-background-clip: padding-box;
  127. background-clip: padding-box;
  128. }
  129. button:hover {
  130. background-image: linear-gradient(bottom, #424b57 0%, #61707e 100%);
  131. background-image: -o-linear-gradient(bottom, #424b57 0%, #61707e 100%);
  132. background-image: -moz-linear-gradient(bottom, #424b57 0%, #61707e 100%);
  133. background-image: -webkit-linear-gradient(bottom, #424b57 0%, #61707e 100%);
  134. background-image: -ms-linear-gradient(bottom, #424b57 0%, #61707e 100%);
  135. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #424b57), color-stop(1, #61707e));
  136. }
  137. button:active {
  138. background-image: linear-gradient(bottom, #51606e 0, #323b47 100%);
  139. background-image: -o-linear-gradient(bottom, #51606e 0, #323b47 100%);
  140. background-image: -moz-linear-gradient(bottom, #51606e 0, #323b47 100%);
  141. background-image: -webkit-linear-gradient(bottom, #51606e 0, #323b47 100%);
  142. background-image: -ms-linear-gradient(bottom, #51606e 0, #323b47 100%);
  143. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #51606e), color-stop(1, #323b47));
  144. position:relative;
  145. top:1px;
  146. }
  147. button:disabled, .buttondisabled {
  148. background: #ccc;
  149. color: #888;
  150. top: 0;
  151. }
  152. button img {
  153. margin-right: 8px;
  154. position: relative;
  155. top: 2px;
  156. }
  157. #expiration, #formatter, #rawtextbutton, #burnafterreadingoption, #opendisc {
  158. background-color: #414d5a;
  159. padding: 6px 8px;
  160. margin: 0 5px 0 0;
  161. position: relative;
  162. bottom: 1px; /* WTF ? Why is this shifted by 1 pixel ? */
  163. }
  164. #expiration select, #formatter select {
  165. color: #eee;
  166. background: transparent;
  167. border: none;
  168. }
  169. #expiration select option, #formatter select option {
  170. color:#eee;
  171. background: #414d5a;
  172. }
  173. #rawtextbutton img {
  174. padding: 1px 0 1px 0;
  175. }
  176. #remainingtime, #password {
  177. color: #94a3b4;
  178. display: inline;
  179. font-size: 0.85em;
  180. }
  181. #newbutton {
  182. float: right;
  183. margin-right: 0;
  184. margin-bottom: 5px;
  185. display: inline;
  186. }
  187. input {
  188. color: #777;
  189. font-size: 1em;
  190. padding: 6px;
  191. border: 1px solid #28343f;
  192. }
  193. .blink {
  194. text-decoration: blink;
  195. font-size: 0.8em;
  196. color: #a4b3c4;
  197. }
  198. .foryoureyesonly {
  199. color: #ff0 !important;
  200. font-size: 1em !important;
  201. font-weight: bold !important;
  202. }
  203. .nonworking {
  204. background-color: #fff;
  205. color: #000;
  206. width: 100%;
  207. text-align: center;
  208. font-weight: bold;
  209. font-size: 10pt;
  210. -webkit-border-radius: 4px;
  211. -moz-border-radius: 4px;
  212. border-radius: 4px;
  213. padding: 5px;
  214. }
  215. .hidden { display: none !important; }
  216. #ienotice {
  217. background-color: #7e98af;
  218. color: #000;
  219. font-size: 0.85em;
  220. padding: 3px 5px;
  221. text-align: center;
  222. -webkit-border-radius: 4px;
  223. -moz-border-radius: 4px;
  224. border-radius: 4px;
  225. display: none;
  226. }
  227. #ienotice a { color: #000; }
  228. #oldienotice { display: none; }
  229. .errorMessage {
  230. background-color: #f77 !important;
  231. color:#ff0;
  232. }
  233. /* --- discussion related CSS ------- */
  234. #discussion { /* Discussion container */
  235. margin-top: 20px;
  236. width: 100%;
  237. margin-left: -30px;
  238. min-width: 200px;
  239. }
  240. h4.title {
  241. font-size: 1.2em;
  242. color: #94a3b4;
  243. font-style: italic;
  244. font-weight: bold;
  245. position: relative;
  246. margin-left: 30px;
  247. }
  248. .comment /* One single reply */
  249. {
  250. background-color: #ceced6;
  251. color: #000;
  252. white-space: pre-wrap;
  253. font-family: Consolas,"Lucida Console","DejaVu Sans Mono",Monaco,monospace;
  254. font-size: 9pt;
  255. border-left: 1px solid #859AAE;
  256. border-top: 1px solid #859AAE;
  257. padding: 5px 0px 5px 5px;
  258. margin-left: 30px;
  259. -moz-box-shadow: -3px -3px 5px rgba(0,0,0,0.15);
  260. -webkit-box-shadow: -3px -3px 5px rgba(0,0,0,0.15);
  261. box-shadow: -3px -3px 5px rgba(0,0,0,0.15);
  262. min-width: 200px;
  263. overflow: auto;
  264. }
  265. .reply { margin: 5px 0 0 30px; }
  266. #replystatus {
  267. display: inline;
  268. padding: 1px 7px;
  269. font-family: Arial, Helvetica, sans-serif;
  270. }
  271. .comment button {
  272. color: #446;
  273. background-color: #aab;
  274. background-repeat: no-repeat;
  275. background-position: center left;
  276. padding: 0 2px;
  277. font-size: 0.73em;
  278. margin: 3px 5px 3px 0;
  279. display: inline;
  280. background-image: linear-gradient(bottom, #aab 0, #ccc 100%);
  281. background-image: -o-linear-gradient(bottom, #aab 0, #ccc 100%);
  282. background-image: -moz-linear-gradient(bottom, #aab 0, #ccc 100%);
  283. background-image: -webkit-linear-gradient(bottom, #aab 0, #ccc 100%);
  284. background-image: -ms-linear-gradient(bottom, #aab 0, #ccc 100%);
  285. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #aab), color-stop(1, #ccc));
  286. border: 1px solid #ccd;
  287. -moz-box-shadow: inset 0 1px 2px #ddd;
  288. -webkit-box-shadow: inset 0 1px 2px #fff;
  289. box-shadow: inset 0 1px 2px #eee;
  290. -webkit-border-radius: 3px;
  291. -moz-border-radius: 3px;
  292. border-radius: 3px;
  293. -moz-background-clip: padding;
  294. -webkit-background-clip: padding-box;
  295. background-clip: padding-box;
  296. }
  297. .comment button:hover {
  298. background-image: linear-gradient(bottom, #ccd 0, #fff 100%);
  299. background-image: -o-linear-gradient(bottom, #ccd 0, #fff 100%);
  300. background-image: -moz-linear-gradient(bottom, #ccd 0, #fff 100%);
  301. background-image: -webkit-linear-gradient(bottom, #ccd 0, #fff 100%);
  302. background-image: -ms-linear-gradient(bottom, #ccd 0, #fff 100%);
  303. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccd), color-stop(1, #fff));
  304. }
  305. .comment button:active {
  306. background-image: linear-gradient(bottom, #fff 0, #889 100%);
  307. background-image: -o-linear-gradient(bottom, #fff 0, #889 100%);
  308. background-image: -moz-linear-gradient(bottom, #fff 0, #889 100%);
  309. background-image: -webkit-linear-gradient(bottom, #fff 0, #889 100%);
  310. background-image: -ms-linear-gradient(bottom, #fff 0, #889 100%);
  311. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(1, #889));
  312. position:relative;
  313. top:1px;
  314. }
  315. .comment input { padding: 2px; }
  316. #replymessage { margin-top: 5px; }
  317. .commentmeta {
  318. color: #fff;
  319. background-color: #8ea0b2;
  320. margin-bottom: 3px;
  321. padding: 0 0 0 3px;
  322. }
  323. .commentdate { color: #bfcede; }
  324. img.vizhash {
  325. width: 16px;
  326. height: 16px;
  327. position: relative;
  328. top: 2px;
  329. left: -3px;
  330. }
  331. #prettyprint {
  332. color: #000000;
  333. font-size: 1.2em;
  334. }
  335. #cleartext {
  336. padding: 10px;
  337. }
  338. #cleartext * {
  339. margin-bottom: 10px;
  340. }
  341. #cleartext ol {
  342. list-style: auto;
  343. margin-left: 15px;
  344. }
  345. #cleartext ul {
  346. list-style: disc;
  347. margin-left: 15px;
  348. }
  349. #cleartext h1, #cleartext h2, #cleartext h3, #cleartext h4, #cleartext h5, #cleartext h6 {
  350. font-weight: bold;
  351. }
  352. #cleartext h1 {
  353. font-size: 2em;
  354. }
  355. #cleartext h2 {
  356. font-size: 1.5em;
  357. }
  358. #cleartext h3 {
  359. font-size: 1.2em;
  360. }