/demos/demo.css

http://rangyinputs.googlecode.com/ · CSS · 69 lines · 53 code · 10 blank · 6 comment · 0 complexity · bb42dacceb5b97d44be8bc8f5911027c MD5 · raw file

  1. body {
  2. }
  3. #intro {
  4. font-size: 125%;
  5. color: green;
  6. }
  7. p.small {
  8. font-size: 75%;
  9. }
  10. span.smaller {
  11. font-size: 75%;
  12. }
  13. pre {
  14. /*
  15. border: solid darkblue 1px;
  16. */
  17. padding: 3px;
  18. }
  19. #content {
  20. margin-right: 330px;
  21. }
  22. #buttons {
  23. float: right;
  24. border: solid black 1px;
  25. background-color: lightgoldenrodyellow;
  26. /*
  27. color: darkblue;
  28. */
  29. padding: 0.25em;
  30. width: 300px;
  31. }
  32. #buttons h3 {
  33. font-size: 125%;
  34. font-weight: bold;
  35. margin: 0;
  36. padding: 0.25em 0;
  37. }
  38. #buttons h4 {
  39. font-size: 100%;
  40. font-weight: normal;
  41. font-style: italic;
  42. margin: 0;
  43. padding: 0.25em 0;
  44. }
  45. #code {
  46. width: 95%;
  47. }
  48. #selectioncontent {
  49. border: solid black 1px;
  50. padding: 0.125em;
  51. background-color: white;
  52. overflow: auto;
  53. }
  54. .unselectable {
  55. -moz-user-select: none;
  56. -moz-user-focus: ignore;
  57. -khtml-user-select: none;
  58. user-select: none; /* CSS3 */
  59. }