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.
 
 
 
 
 

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