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

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