release-notes.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. body {
  2. color: #333;
  3. padding: 0 40px 40px;
  4. font-family: Helvetica, Arial, Geneva, sans-serif;
  5. font-size: 12px;
  6. line-height: normal;
  7. width: 800px;
  8. margin: 0 auto;
  9. }
  10. a#logo {
  11. background: transparent url(img/logo-sencha-sm.png) no-repeat scroll 0px 100%;
  12. display: block;
  13. height: 58px;
  14. margin: 0;
  15. padding: 0;
  16. width: 134px;
  17. overflow: hidden;
  18. text-indent: 150%;
  19. white-space: nowrap;
  20. }
  21. h1, h2, h3 {
  22. font-family: 'Helvetica Neue', Helvetica, Arial, Geneva, sans-serif;
  23. font-weight: 600;
  24. margin: 1em 0;
  25. }
  26. h1 { font-size: 28px; }
  27. h2 { font-size: 20px; }
  28. h3 { font-size: 16px; }
  29. ul li { padding: 2px 0; }
  30. .doc { color: blue; }
  31. .change { color: #196cb4; }
  32. .new { color: #6e7a32; }
  33. ul { padding: .1em 1.5em; }
  34. .notes { color: #777; }
  35. a { color: #0464BB; }
  36. a:hover { color: rgb(28, 65, 124); }
  37. pre {
  38. background: ghostWhite;
  39. border: 1px solid #ddd;
  40. font-family: Menlo, Monaco, Courier, monospace;
  41. overflow: auto;
  42. padding: 12px;
  43. }
  44. hr {
  45. color: #e0e0e0;
  46. background-color: #e0e0e0;
  47. height: 4px;
  48. border: none;
  49. outline: none;
  50. }