| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- /**
- * Some of the examples make use of the Silk icon set by Mark James http://www.famfamfam.com/lab/icons/silk/
- *
- */
- .icon-prev,
- .icon-previous
- {
- background: url(../images/arrow_left.png) no-repeat left center !important;
- }
- .icon-next
- {
- background: url(../images/arrow_right.png) no-repeat left center !important;
- }
- .icon-calendar
- {
- background: url(../images/calendar.png) no-repeat left center !important;
- }
- body {
- font-family:helvetica,tahoma,verdana,sans-serif;
- padding:20px;
- padding-top:32px;
- font-size:13px;
- }
- p {
- margin-bottom:15px;
- }
- h1 {
- font-size:large;
- margin-bottom:20px;
- }
- h2 {
- font-size:14px;
- color:#333;
- font-weight:bold;
- margin:10px 0;
- }
- pre.code {
- background: #F8F8F8;
- border: 1px solid #e8e8e8;
- padding:10px;
- margin:10px;
- margin-left:0px;
- border-left:5px solid #e8e8e8;
- font-size: 12px !important;
- line-height:14px !important;
- }
- a
- {
- text-decoration:none;
- }
- a:hover
- {
- text-decoration:underline;
- }
- .sch-event-endsoutside
- {
- -moz-border-radius-topright:0 !important;
- -moz-border-radius-bottomright:0 !important;
- -webkit-border-radius-top-right:0 !important;
- -webkit-border-radius-bottom-right:0 !important;
- }
- .sch-event-startsoutside
- {
- -moz-border-radius-topleft:0 !important;
- -moz-border-radius-bottomleft:0 !important;
- -webkit-border-radius-top-left:0 !important;
- -webkit-border-radius-bottom-left:0 !important;
- }
- .sch-event
- {
- -webkit-box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
- -moz-box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
- -ms-box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
- box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
- border-radius:3px;
- border:1px solid Turquoise;
- }
- .icon-horizontal
- {
- background:url(../images/horizontal.png) no-repeat left center;
- }
- .icon-vertical
- {
- background:url(../images/vertical.png) no-repeat left center;
- }
- .sch-percent-allocated-bar
- {
- /**background: url("../images/graytexture.png") repeat-x scroll 0 0 DarkCyan;*/
- background-color:#FF4040;
- bottom:0;
- left:0;
- position:absolute;
- overflow:hidden;
- width:100%;
- z-index:-1;
- -webkit-box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
- -moz-box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
- -ms-box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
- box-shadow: 1px 1px 1px rgba(150, 150, 150, 0.3);
- border-radius:3px;
- border:1px solid Turquoise;
- }
- .sch-event
- {
- background-color:#CDCDB4 !important;
- border-radius:10px;
- border-color:plum;
- }
- .sch-percent-allocated-text
- {
- display:block;
- font-weight:bold;
- font-size:15px;
- text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
- color:#FFF;
- position:relative;
- z-index:1;
- text-align:center;
- padding-top:5px;
- }
- .sch-alert
- {
- /** display:block;*/
- font-size:14px;
- color: '#ffc';
- position:relative;
- text-align:center;
- padding-top:5px;
- }
- .sch-event-inner
- {
- margin : 0;
- height:inherit;
- overflow:hidden;
- text-align:center;
- }
- .vertical span
- {
- display:block;
- position:relative;
- top:16px;
- -webkit-transform: rotate(-90deg);
- -moz-transform: rotate(-90deg);
- transform: rotate(-90deg);
- white-space:nowrap;
- }
- .x-ie .vertical span
- {
- left:5px;
- top:-5px;
- width:80px;
- font-size:90%;
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
- }
|