A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

277 lines
5.1 KiB

  1. body {
  2. font-family: helvetica, arial, clean, sans-serif;
  3. font-size: 14px;
  4. color: #000;
  5. background-color: #000;
  6. background-attachment: fixed;
  7. margin: 0;
  8. }
  9. ul, ol {
  10. line-height: 1.5;
  11. }
  12. h2 {
  13. margin-bottom: 0.2em;
  14. }
  15. div#header {
  16. font-size: 2.5em;
  17. font-weight: bold;
  18. margin: 20px 60px;
  19. padding: 10px 15px;
  20. border: 1px solid #777;
  21. background-color: #FFF;
  22. }
  23. div#container {
  24. line-height: 1.25;
  25. margin: 0 60px 65px 60px;
  26. padding: 5px 15px 15px 15px;
  27. border: 1px solid #777;
  28. background-color: #FFF;
  29. }
  30. div#footer {
  31. position: fixed;
  32. width: 100%;
  33. height: 45px;
  34. bottom: 0;
  35. font-size: 0.85em;
  36. text-align: center;
  37. line-height: 1.5;
  38. border-top: 1px solid #777;
  39. background: #DDDDDD;
  40. }
  41. div#info-box {
  42. padding: 0 10px 0 10px;
  43. margin: 10px 5px 10px 5px;
  44. }
  45. div#cv-result {
  46. padding: 10px;
  47. margin: 15px 5px 10px 5px;
  48. }
  49. div#sources-container {
  50. padding: 5px 10px;
  51. margin: 15px 5px 10px 5px;
  52. background-color: #EEE;
  53. border: 1px solid #BBB;
  54. }
  55. div#sources-title {
  56. margin-bottom: -5px;
  57. text-align: center;
  58. font-weight: bold;
  59. }
  60. div#cv-additional {
  61. padding-bottom: 5px;
  62. display: none;
  63. }
  64. table#heading {
  65. width: 100%;
  66. }
  67. table#cv-form-outer {
  68. width: 750px;
  69. }
  70. table#cv-form-inner {
  71. width: 100%;
  72. border-spacing: 0;
  73. }
  74. table#cv-result-sources {
  75. width: 100%;
  76. border-spacing: 0 4px;
  77. }
  78. table#cv-result-sources th {
  79. text-align: left;
  80. }
  81. table#cv-result-sources th:nth-child(2) {
  82. padding-right: 4px;
  83. }
  84. table#cv-result-sources tr:nth-child(even) {
  85. background-color: #E0E0E0;
  86. }
  87. table#cv-chain-table {
  88. width: 100%;
  89. margin-bottom: 10px;
  90. border-spacing: 10px 0;
  91. }
  92. tr#source-row-selected {
  93. background-color: #CFCFCF;
  94. }
  95. td#head-settings {
  96. text-align: right;
  97. }
  98. td#cv-col1 {
  99. width: 15%;
  100. }
  101. td#cv-col2 {
  102. width: 55%;
  103. }
  104. td#cv-col3 {
  105. width: 15%;
  106. text-align: center;
  107. }
  108. td#cv-col4 {
  109. width: 15%;
  110. }
  111. td#cv-inner-col1 {
  112. width: 4%;
  113. }
  114. td#cv-inner-col2 {
  115. width: 22%;
  116. }
  117. td#cv-inner-col3 {
  118. width: 76%;
  119. }
  120. h2#cv-result-header {
  121. margin: 0;
  122. }
  123. ul#cv-result-list {
  124. margin: 0.5em 0;
  125. }
  126. span#cv-additional-text {
  127. font-style: italic;
  128. }
  129. a#source-selected {
  130. font-weight: bold;
  131. }
  132. a#cv-cached {
  133. position: relative;
  134. }
  135. a#cv-cached span {
  136. display: none;
  137. position: absolute;
  138. top: 20px;
  139. left: -50px;
  140. width: 500px;
  141. padding: 5px;
  142. z-index: 1;
  143. background: #F3F3F3;
  144. border: 1px solid #AAA;
  145. color: black;
  146. }
  147. div.green-box {
  148. background-color: #EFE;
  149. border: 1px solid #7F7;
  150. }
  151. div.yellow-box {
  152. background-color: #FFD;
  153. border: 1px solid #EE5;
  154. }
  155. div.red-box {
  156. background-color: #FEE;
  157. border: 1px solid #F77;
  158. }
  159. div.indentable {
  160. white-space: pre-wrap;
  161. }
  162. div.cv-chain-detail {
  163. padding: 0 10px 0 10px;
  164. background-color: #FFF;
  165. border: 1px solid #BBB;
  166. }
  167. td.cv-chain-cell {
  168. width: 50%;
  169. vertical-align: top;
  170. }
  171. input.cv-text {
  172. width: 100%;
  173. }
  174. input#cv-cb-engine {
  175. margin-left: 0;
  176. margin-right: 5px;
  177. }
  178. input#cv-cb-links {
  179. margin-left: 20px;
  180. margin-right: 5px;
  181. }
  182. span.cv-hl {
  183. background: #FAA;
  184. }
  185. span.cv-hl-in {
  186. background: #FCC;
  187. background: -webkit-gradient(linear, 0% 0%, 100% 0%, from(#FFF), to(#FAA)); /* Chrome, Safari 4+ */
  188. background: -webkit-linear-gradient(left, #FFF, #FAA); /* Chrome 10+, Safari 5+ */
  189. background: -moz-linear-gradient(left, #FFF, #FAA); /* Firefox 3.6+ */
  190. background: -ms-linear-gradient(left, #FFF, #FAA); /* IE 10+ */
  191. background: -o-linear-gradient(left, #FFF, #FAA); /* Opera 11.10+ */
  192. background: linear-gradient(left, #FFF, #FAA);
  193. }
  194. span.cv-hl-out {
  195. background: #FCC;
  196. background: -webkit-gradient(linear, 0% 0%, 100% 0%, from(#FAA), to(#FFF)); /* Chrome, Safari 4+ */
  197. background: -webkit-linear-gradient(left, #FAA, #FFF); /* Chrome 10+, Safari 5+ */
  198. background: -moz-linear-gradient(left, #FAA, #FFF); /* Firefox 3.6+ */
  199. background: -ms-linear-gradient(left, #FAA, #FFF); /* IE 10+ */
  200. background: -o-linear-gradient(left, #FAA, #FFF); /* Opera 11.10+ */
  201. background: linear-gradient(left, #FAA, #FFF);
  202. }
  203. span.mono { font-family: monospace; }
  204. span.light { color: #CCC; }
  205. span.medium { color: #AAA; }
  206. span.source-confidence { font-weight: bold; }
  207. span.source-suspect { color: #900; }
  208. span.source-possible { color: #990; }
  209. span.source-novio { color: #090; }
  210. span.source-skipped { font-style: italic; }
  211. a:link { color: #373; text-decoration: none; }
  212. a:visited { color: #373; text-decoration: none; }
  213. a:hover { color: #040; text-decoration: underline; }
  214. a:active { color: #404; text-decoration: underline; }
  215. a:link#a-home { color: #777; }
  216. a:visited#a-home { color: #777; }
  217. a:hover#a-home { color: #555; }
  218. a:active#a-home { color: #333; }
  219. a:link#a-settings { color: #AAA; }
  220. a:visited#a-settings { color: #AAA; }
  221. a:hover#a-settings { color: #888; }
  222. a:active#a-settings { color: #666; }
  223. a:active#cv-cached { color: #040; text-decoration: none; }
  224. a:hover#cv-cached { text-decoration: none; }
  225. a:hover#cv-cached span { display: block; }