examples.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /**
  2. * Some of the examples make use of the Silk icon set by Mark James http://www.famfamfam.com/lab/icons/silk/
  3. *
  4. */
  5. .icon-prev,
  6. .icon-previous
  7. {
  8. background: url(../images/arrow_left.png) no-repeat left center !important;
  9. }
  10. .icon-next
  11. {
  12. background: url(../images/arrow_right.png) no-repeat left center !important;
  13. }
  14. .icon-calendar
  15. {
  16. background: url(../images/calendar.png) no-repeat left center !important;
  17. }
  18. body {
  19. font-family:helvetica,tahoma,verdana,sans-serif;
  20. padding:20px;
  21. padding-top:32px;
  22. font-size:13px;
  23. }
  24. p {
  25. margin-bottom:15px;
  26. }
  27. h1 {
  28. font-size:large;
  29. margin-bottom:20px;
  30. }
  31. h2 {
  32. font-size:14px;
  33. color:#333;
  34. font-weight:bold;
  35. margin:10px 0;
  36. }
  37. pre.code{
  38. background: #F8F8F8;
  39. border: 1px solid #e8e8e8;
  40. padding:10px;
  41. margin:10px;
  42. margin-left:0px;
  43. border-left:5px solid #e8e8e8;
  44. font-size: 12px !important;
  45. line-height:14px !important;
  46. }
  47. a
  48. {
  49. text-decoration:none;
  50. }
  51. a:hover
  52. {
  53. text-decoration:underline;
  54. }
  55. .sch-event-endsoutside
  56. {
  57. -moz-border-radius-topright:0 !important;
  58. -moz-border-radius-bottomright:0 !important;
  59. -webkit-border-radius-top-right:0 !important;
  60. -webkit-border-radius-bottom-right:0 !important;
  61. }
  62. .sch-event-startsoutside
  63. {
  64. -moz-border-radius-topleft:0 !important;
  65. -moz-border-radius-bottomleft:0 !important;
  66. -webkit-border-radius-top-left:0 !important;
  67. -webkit-border-radius-bottom-left:0 !important;
  68. }
  69. .sch-event
  70. {
  71. -webkit-box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
  72. -moz-box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
  73. -ms-box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
  74. box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
  75. border-radius:3px;
  76. border:1px solid Turquoise;
  77. }
  78. .sch-gantt-parent-cell
  79. {
  80. font-weight: bold !important;
  81. }
  82. .sch-ganttpanel .x-tree-icon-parent
  83. {
  84. background: url(../images/puzzle.png) no-repeat left center;
  85. }
  86. .x-tree-icon-leaf
  87. {
  88. background: url(../images/cog.png) no-repeat left center;
  89. }