A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

main.css 1.5 KiB

13 yıl önce
13 yıl önce
13 yıl önce
13 yıl önce
13 yıl önce
13 yıl önce
13 yıl önce
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. body {
  2. font-family: helvetica, arial, clean, sans-serif;
  3. font-size: 14px;
  4. color: #000;
  5. background-color: #EEE;
  6. }
  7. div#container {
  8. width: 800px;
  9. margin: 20px auto 90px auto;
  10. border: 1px solid #999;
  11. border-radius: 10px;
  12. background-color: #FFF;
  13. }
  14. div#content {
  15. padding: 2px 15px 2px 15px;
  16. }
  17. div#footer {
  18. position: fixed;
  19. width: 100%;
  20. height: 70px;
  21. bottom: 0;
  22. font-size: 12px;
  23. text-align: center;
  24. line-height: 1.5;
  25. background: #EEEEEE;
  26. background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#F7F7F7), to(#CCCCCC)); /* Chrome, Safari 4+ */
  27. background: -webkit-linear-gradient(top, #F7F7F7, #CCCCCC); /* Chrome 10+, Safari 5+ */
  28. background: -moz-linear-gradient(top, #F7F7F7, #CCCCCC); /* Firefox 3.6+ */
  29. background: -ms-linear-gradient(top, #F7F7F7, #CCCCCC); /* IE 10+ (lol) */
  30. background: -o-linear-gradient(top, #F7F7F7, #CCCCCC); /* Opera 11.10+ */
  31. background: linear-gradient(top, #F7F7F7, #CCCCCC);
  32. }
  33. div#foot-divider {
  34. border-bottom: 1px solid #999;
  35. }
  36. table#footer-box {
  37. width: 100%;
  38. height: 100%;
  39. }
  40. a:link { color: #373; text-decoration: none; }
  41. a:visited { color: #373; text-decoration: none; }
  42. a:hover { color: #040; text-decoration: underline; }
  43. a:active { color: #404; text-decoration: underline; }
  44. a.incognito:link { color: #000; text-decoration: none; }
  45. a.incognito:visited { color: #000; text-decoration: none; }
  46. a.incognito:hover { color: #000; text-decoration: underline; }
  47. a.incognito:active { color: #000; text-decoration: none; }