A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

327 строки
5.4 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: 5px;
  47. margin: 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. display: none;
  62. }
  63. div#generation-time {
  64. margin-right: 5px;
  65. text-align: right;
  66. font-style: italic;
  67. }
  68. div#cv-chain-container {
  69. margin: 0 4px;
  70. }
  71. table#heading {
  72. width: 100%;
  73. }
  74. table#cv-form-outer {
  75. width: 750px;
  76. }
  77. table#cv-form-inner {
  78. width: 100%;
  79. border-spacing: 0;
  80. }
  81. table#cv-result-sources {
  82. width: 100%;
  83. border-spacing: 0 4px;
  84. }
  85. table#cv-result-sources th {
  86. text-align: left;
  87. }
  88. table#cv-result-sources th:nth-child(2) {
  89. padding-right: 4px;
  90. }
  91. table#cv-result-sources tr:nth-child(even) {
  92. background-color: #E0E0E0;
  93. }
  94. table#cv-result-head-table {
  95. width: 100%;
  96. text-align: center;
  97. }
  98. table#cv-result-head-table td:nth-child(odd) {
  99. width: 42.5%;
  100. font-size: 1.25em;
  101. font-weight: bold;
  102. }
  103. table#cv-result-head-table td:nth-child(2) {
  104. width: 15%;
  105. }
  106. table#cv-result-head-table td:nth-child(2) div:nth-child(1) {
  107. font-weight: bold;
  108. }
  109. table#cv-result-head-table td:nth-child(2) div:nth-child(2) {
  110. font-size: 2.5em;
  111. font-weight: bold;
  112. line-height: 1;
  113. }
  114. table#cv-result-head-table td:nth-child(2) div:nth-child(3) {
  115. font-size: 0.8em;
  116. }
  117. table#cv-chain-table {
  118. width: 100%;
  119. margin-bottom: 10px;
  120. border-spacing: 0;
  121. }
  122. tr#source-row-selected {
  123. background-color: #CFCFCF !important;
  124. }
  125. td#head-settings {
  126. text-align: right;
  127. }
  128. td#cv-col1 {
  129. width: 15%;
  130. }
  131. td#cv-col2 {
  132. width: 55%;
  133. }
  134. td#cv-col3 {
  135. width: 15%;
  136. text-align: center;
  137. }
  138. td#cv-col4 {
  139. width: 15%;
  140. }
  141. td#cv-inner-col1 {
  142. width: 4%;
  143. }
  144. td#cv-inner-col2 {
  145. width: 22%;
  146. }
  147. td#cv-inner-col3 {
  148. width: 76%;
  149. }
  150. h2#cv-result-header {
  151. margin: 0;
  152. }
  153. span#redirected-from {
  154. font-size: 0.75em;
  155. font-weight: normal;
  156. font-style: italic;
  157. }
  158. a#source-selected {
  159. font-weight: bold;
  160. }
  161. a#cv-cached {
  162. position: relative;
  163. }
  164. a#cv-cached span {
  165. display: none;
  166. position: absolute;
  167. top: 20px;
  168. left: -50px;
  169. width: 500px;
  170. padding: 5px;
  171. z-index: 1;
  172. background: #F3F3F3;
  173. border: 1px solid #AAA;
  174. color: black;
  175. font-style: normal;
  176. text-align: left;
  177. }
  178. div.green-box {
  179. background-color: #EFE;
  180. border: 1px solid #7F7;
  181. }
  182. div.yellow-box {
  183. background-color: #FFD;
  184. border: 1px solid #EE5;
  185. }
  186. div.red-box {
  187. background-color: #FEE;
  188. border: 1px solid #F77;
  189. }
  190. div.indentable {
  191. white-space: pre-wrap;
  192. }
  193. div.cv-source-footer {
  194. padding-bottom: 5px;
  195. font-style: italic;
  196. }
  197. div.cv-source-footer a {
  198. font-style: normal;
  199. }
  200. div.cv-chain-detail {
  201. padding: 0 10px 0 10px;
  202. background-color: #FFF;
  203. border: 1px solid #BBB;
  204. }
  205. td.cv-chain-cell {
  206. width: 50%;
  207. vertical-align: top;
  208. }
  209. td.cv-chain-cell:first-child {
  210. padding-right: 5px;
  211. }
  212. td.cv-chain-cell:last-child {
  213. padding-left: 5px;
  214. }
  215. input.cv-text {
  216. width: 100%;
  217. }
  218. input#cv-cb-engine {
  219. margin-left: 0;
  220. margin-right: 5px;
  221. }
  222. input#cv-cb-links {
  223. margin-left: 20px;
  224. margin-right: 5px;
  225. }
  226. span.cv-hl {
  227. background: #FAA;
  228. }
  229. span.cv-hl-in {
  230. background: #FCC;
  231. background: linear-gradient(to left, #FAA, #FFF);
  232. }
  233. span.cv-hl-out {
  234. background: #FCC;
  235. background: linear-gradient(to right, #FAA, #FFF);
  236. }
  237. span.mono { font-family: monospace; }
  238. span.light { color: #CCC; }
  239. span.medium { color: #AAA; }
  240. span.source-confidence { font-weight: bold; }
  241. span.source-suspect { color: #900; }
  242. span.source-possible { color: #990; }
  243. span.source-novio { color: #090; }
  244. span.source-skipped { font-style: italic; }
  245. a:link { color: #373; text-decoration: none; }
  246. a:visited { color: #373; text-decoration: none; }
  247. a:hover { color: #040; text-decoration: underline; }
  248. a:active { color: #404; text-decoration: underline; }
  249. a:link#a-home { color: #777; }
  250. a:visited#a-home { color: #777; }
  251. a:hover#a-home { color: #555; }
  252. a:active#a-home { color: #333; }
  253. a:link#a-settings { color: #AAA; }
  254. a:visited#a-settings { color: #AAA; }
  255. a:hover#a-settings { color: #888; }
  256. a:active#a-settings { color: #666; }
  257. a:active#cv-cached { color: #040; text-decoration: none; }
  258. a:hover#cv-cached { text-decoration: none; }
  259. a:hover#cv-cached span { display: block; }
  260. a:link.source-url { color: #357; }
  261. a:visited.source-url { color: #357; }
  262. a:hover.source-url { color: #035; }
  263. a:active.source-url { color: #404; }