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

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