config-cc.css 858 B

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