config-cc.css 798 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /**
  2. * Copy of CC standard stylesheet, plus tweaks for iframe usage
  3. */
  4. body {
  5. margin: 0;
  6. background: #eee;
  7. font-family: 'Verdana';
  8. color: #333;
  9. }
  10. #main {
  11. border: 1px solid #d0d0d0;
  12. background: #fff;
  13. margin: 0.5em;
  14. }
  15. /**
  16. * Looks like you have to specify the width of #menu
  17. * or IE5 Mac stretches it all the way across the div, and
  18. * Opera streches it half way.
  19. */
  20. #main #menu {
  21. border-left: 1px dotted #ccc;
  22. float: right;
  23. width: 230px;
  24. background: #fff;
  25. margin: 0 0 10px 10px;
  26. }
  27. h1,
  28. h3,
  29. p,
  30. pre,
  31. td {
  32. margin: 0 20px 20px 20px;
  33. font-size: 11px;
  34. line-height: 140%;
  35. }
  36. .header {
  37. padding-left: 10px;
  38. padding-top: 10px;
  39. }
  40. .nav {
  41. padding-left: 10px;
  42. padding-bottom: 10px;
  43. font-size: 11px;
  44. margin-bottom: 16px;
  45. }
  46. #menu p {
  47. font-size: 11px;
  48. }
  49. .dent {
  50. margin-left: 64px;
  51. }