sample.css 677 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. @CHARSET "UTF-8";
  2. body {
  3. margin: 0;
  4. }
  5. * {
  6. font-family: Helv, Helvetica, sans-serif;
  7. }
  8. #header {
  9. background-color: silver;
  10. box-shadow: 0 0.1em 0.5em gray50;
  11. color: white;
  12. padding: 0.2em 0.5em;
  13. text-decoration: none;
  14. text-shadow: 0 0 0.2em orange;
  15. }
  16. #header a {
  17. background-color: transparent;
  18. color: inherit;
  19. text-decoration: none;
  20. }
  21. #mainServers {
  22. box-shadow: 0 0.2em 0.5em gray50;
  23. margin: 0.5em auto;
  24. /* width: 100% */
  25. }
  26. #mainServers td,
  27. #mainServers th {
  28. padding: 0.1em 0.5em;
  29. margin: 0 auto;
  30. text-align: center;
  31. }
  32. #mainServers tr.serverRow {
  33. height: 100px;
  34. }
  35. #mainServers col#mainHit,
  36. #mainServers col#mainUse {
  37. width: 100px;
  38. }