examples.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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. .icon-horizontal
  79. {
  80. background:url(../images/horizontal.png) no-repeat left center;
  81. }
  82. .icon-vertical
  83. {
  84. background:url(../images/vertical.png) no-repeat left center;
  85. }
  86. .sch-percent-allocated-bar
  87. {
  88. /**background: url("../images/graytexture.png") repeat-x scroll 0 0 DarkCyan;*/
  89. background-color:#FF4040;
  90. bottom:0;
  91. left:0;
  92. position:absolute;
  93. overflow:hidden;
  94. width:100%;
  95. z-index:-1;
  96. -webkit-box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
  97. -moz-box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
  98. -ms-box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
  99. box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
  100. border-radius:3px;
  101. border:1px solid Turquoise;
  102. }
  103. .sch-event
  104. {
  105. background-color:#CDCDB4 !important;
  106. border-radius:10px;
  107. border-color:plum;
  108. }
  109. .sch-percent-allocated-text
  110. {
  111. display:block;
  112. font-weight:bold;
  113. font-size:15px;
  114. text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
  115. color:#FFF;
  116. position:relative;
  117. z-index:1;
  118. text-align:center;
  119. padding-top:5px;
  120. }
  121. .sch-alert
  122. {
  123. /** display:block;*/
  124. font-size:14px;
  125. color: '#ffc';
  126. position:relative;
  127. text-align:center;
  128. padding-top:5px;
  129. }
  130. .sch-event-inner
  131. {
  132. margin : 0;
  133. height:inherit;
  134. overflow:hidden;
  135. text-align:center;
  136. }
  137. .vertical span
  138. {
  139. display:block;
  140. position:relative;
  141. top:16px;
  142. -webkit-transform: rotate(-90deg);
  143. -moz-transform: rotate(-90deg);
  144. transform: rotate(-90deg);
  145. white-space:nowrap;
  146. }
  147. .x-ie .vertical span
  148. {
  149. left:5px;
  150. top:-5px;
  151. width:80px;
  152. font-size:90%;
  153. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  154. }