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.
 
 
 
 
 

224 lines
4.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. table#heading {
  50. width: 100%;
  51. }
  52. table#cv-form-outer {
  53. width: 750px;
  54. }
  55. table#cv-form-inner {
  56. width: 100%;
  57. border-spacing: 0;
  58. }
  59. table#cv-chain-table {
  60. width: 100%;
  61. margin-bottom: 10px;
  62. border-spacing: 10px 0;
  63. }
  64. td#head-settings {
  65. text-align: right;
  66. }
  67. td#cv-col1 {
  68. width: 15%;
  69. }
  70. td#cv-col2 {
  71. width: 55%;
  72. }
  73. td#cv-col3 {
  74. width: 15%;
  75. text-align: center;
  76. }
  77. td#cv-col4 {
  78. width: 15%;
  79. }
  80. td#cv-inner-col1 {
  81. width: 4%;
  82. }
  83. td#cv-inner-col2 {
  84. width: 22%;
  85. }
  86. td#cv-inner-col3 {
  87. width: 76%;
  88. }
  89. h2#cv-result-header {
  90. margin: 0;
  91. }
  92. ul#cv-result-list {
  93. margin: 0.5em 0;
  94. }
  95. a#cv-cached {
  96. position: relative;
  97. }
  98. a#cv-cached span {
  99. display: none;
  100. position: absolute;
  101. top: 20px;
  102. left: -50px;
  103. width: 500px;
  104. padding: 5px;
  105. z-index: 1;
  106. background: #F3F3F3;
  107. border: 1px solid #AAA;
  108. color: black;
  109. }
  110. div.green-box {
  111. background-color: #EFE;
  112. border: 1px solid #7F7;
  113. }
  114. div.yellow-box {
  115. background-color: #FFD;
  116. border: 1px solid #EE5;
  117. }
  118. div.red-box {
  119. background-color: #FEE;
  120. border: 1px solid #F77;
  121. }
  122. div.indentable {
  123. white-space: pre-wrap;
  124. }
  125. div.cv-chain-detail {
  126. padding: 0 10px 0 10px;
  127. background-color: #FFF;
  128. border: 1px solid #BBB;
  129. }
  130. td.cv-chain-cell {
  131. width: 50%;
  132. vertical-align: top;
  133. }
  134. input.cv-text {
  135. width: 100%;
  136. }
  137. input#cv-cb-engine {
  138. margin-left: 0;
  139. margin-right: 5px;
  140. }
  141. input#cv-cb-links {
  142. margin-left: 20px;
  143. margin-right: 5px;
  144. }
  145. span.cv-hl {
  146. background: #FAA;
  147. }
  148. span.cv-hl-in {
  149. background: #FCC;
  150. background: -webkit-gradient(linear, 0% 0%, 100% 0%, from(#FFF), to(#FAA)); /* Chrome, Safari 4+ */
  151. background: -webkit-linear-gradient(left, #FFF, #FAA); /* Chrome 10+, Safari 5+ */
  152. background: -moz-linear-gradient(left, #FFF, #FAA); /* Firefox 3.6+ */
  153. background: -ms-linear-gradient(left, #FFF, #FAA); /* IE 10+ */
  154. background: -o-linear-gradient(left, #FFF, #FAA); /* Opera 11.10+ */
  155. background: linear-gradient(left, #FFF, #FAA);
  156. }
  157. span.cv-hl-out {
  158. background: #FCC;
  159. background: -webkit-gradient(linear, 0% 0%, 100% 0%, from(#FAA), to(#FFF)); /* Chrome, Safari 4+ */
  160. background: -webkit-linear-gradient(left, #FAA, #FFF); /* Chrome 10+, Safari 5+ */
  161. background: -moz-linear-gradient(left, #FAA, #FFF); /* Firefox 3.6+ */
  162. background: -ms-linear-gradient(left, #FAA, #FFF); /* IE 10+ */
  163. background: -o-linear-gradient(left, #FAA, #FFF); /* Opera 11.10+ */
  164. background: linear-gradient(left, #FAA, #FFF);
  165. }
  166. span.mono { font-family: monospace; }
  167. span.light { color: #CCC; }
  168. span.medium { color: #AAA; }
  169. a:link { color: #373; text-decoration: none; }
  170. a:visited { color: #373; text-decoration: none; }
  171. a:hover { color: #040; text-decoration: underline; }
  172. a:active { color: #404; text-decoration: underline; }
  173. a:link#a-home { color: #777; }
  174. a:visited#a-home { color: #777; }
  175. a:hover#a-home { color: #555; }
  176. a:active#a-home { color: #333; }
  177. a:link#a-settings { color: #AAA; }
  178. a:visited#a-settings { color: #AAA; }
  179. a:hover#a-settings { color: #888; }
  180. a:active#a-settings { color: #666; }
  181. a:active#cv-cached { color: #040; text-decoration: none; }
  182. a:hover#cv-cached { text-decoration: none; }
  183. a:hover#cv-cached span { display: block; }