A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

main.css 2.3 KiB

13 lat temu
13 lat temu
13 lat temu
13 lat temu
13 lat temu
13 lat temu
13 lat temu
13 lat temu
13 lat temu
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. body {
  2. font-family: helvetica, arial, clean, sans-serif;
  3. font-size: 14px;
  4. color: #000;
  5. /*background-color: #E0E0E0;*/
  6. background-color: #000;
  7. }
  8. ul, ol {
  9. line-height: 1.75;
  10. }
  11. div#header {
  12. margin: 20px;
  13. padding: 2px 15px 2px 15px;
  14. border: 1px solid #777;
  15. background-color: #FFF;
  16. }
  17. div#container {
  18. line-height: 1.5;
  19. margin: 0 20px 90px 20px;
  20. padding: 2px 15px 2px 15px;
  21. border: 1px solid #777;
  22. background-color: #FFF;
  23. }
  24. div#footer {
  25. position: fixed;
  26. width: 100%;
  27. height: 70px;
  28. bottom: 0;
  29. font-size: 12px;
  30. text-align: center;
  31. line-height: 1.5;
  32. background: #EEEEEE;
  33. background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#F7F7F7), to(#CCCCCC)); /* Chrome, Safari 4+ */
  34. background: -webkit-linear-gradient(top, #F7F7F7, #CCCCCC); /* Chrome 10+, Safari 5+ */
  35. background: -moz-linear-gradient(top, #F7F7F7, #CCCCCC); /* Firefox 3.6+ */
  36. background: -ms-linear-gradient(top, #F7F7F7, #CCCCCC); /* IE 10+ (lol) */
  37. background: -o-linear-gradient(top, #F7F7F7, #CCCCCC); /* Opera 11.10+ */
  38. background: linear-gradient(top, #F7F7F7, #CCCCCC);
  39. }
  40. div#foot-divider {
  41. border-bottom: 1px solid #777;
  42. }
  43. p#heading {
  44. font-size: 3em;
  45. font-weight: bold;
  46. margin: 15px 0 12px 0;
  47. }
  48. p#links {
  49. font-size: 1.65em;
  50. font-weight: bold;
  51. margin: 8px 0 14px 0;
  52. }
  53. table#footer-box {
  54. width: 100%;
  55. height: 100%;
  56. }
  57. div.toolbox {
  58. margin: 15px 0 15px 0;
  59. padding: 0 6px 0 6px;
  60. border: 1px solid #999;
  61. background-color: #F5F5F5;
  62. }
  63. p.toolname {
  64. font-size: 18px;
  65. margin: 6px 0 6px 0;
  66. background-color: #E7E7E7;
  67. }
  68. p.tooldesc {
  69. margin: 6px 0 6px 0;
  70. }
  71. span.light { color: #CCC; }
  72. span.medium { color: #AAA; }
  73. a:link { color: #373; text-decoration: none; }
  74. a:visited { color: #373; text-decoration: none; }
  75. a:hover { color: #040; text-decoration: underline; }
  76. a:active { color: #404; text-decoration: underline; }
  77. a.black:link { color: #000; }
  78. a.black:visited { color: #000; }
  79. a.black:hover { color: #000; }
  80. a.black:active { color: #000; }
  81. a.dark:link { color: #777; }
  82. a.dark:visited { color: #777; }
  83. a.dark:hover { color: #777; }
  84. a.dark:active { color: #333; }
  85. a.mid:link { color: #AAA; }
  86. a.mid:visited { color: #AAA; }
  87. a.mid:hover { color: #888; }
  88. a.mid:active { color: #666; }