1/* 2 * standard.css is the main style-sheet for the dokuwiki-plugin gCalendar 3 * 4 * you should not edit this file. modify this files: 5 * 6 * /user/background.css --> to set background-pictures for specific events 7 * /user/events.css --> to set event-Pictures and text-styles for your events 8 * /user/other.css --> to optionally overwrite the styles in the standard.css file 9 */ 10 11 12/* main-table definition ----------------------------------------------------------------------- */ 13 14.gCal_table { 15 width: 100%; 16 border-collapse: collapse; 17 border: 2px solid black; 18 padding: 0px; 19 margin: 0px; 20 21 font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; 22 font-size: 1em; 23 line-height: 1.25em; 24} 25 26/* current-date in table-header ---------------------------------------------------------------- */ 27 28.gCal_currentDate { 29 padding:5px; 30 font-size:0.5em; 31 color : gray; 32} 33 34/* navi-table (header of main-table) ----------------------------------------------------------- */ 35 36.gCal_naviTable { 37 width: 100%; 38 border-collapse: collapse; 39 background-color: #DDD; 40 padding: 0px; 41 margin: 0px; 42 43 font-size: 2em; 44 line-height: 1em; 45 46 border-bottom: 1px solid black; 47} 48 49.gCal_link_prev {text-align: left} 50.gCal_link_next {text-align: right} 51 52 53/* column-header ------------------------------------------------------------------------------- */ 54 55.gCal_columnHead { 56 background-color: #EEE; 57} 58 59.gCal_header a, 60.gCal_header a:visited, 61.gCal_columnHead a, 62.gCal_columnHead a:visited {color: blue} 63 64 65/* definition of event to page links ----------------------------------------------------------- */ 66 67.gCal_pagelink a, 68.gCal_pagelink a:visited { 69 color: #888; 70 font-size: 1em; 71 font-weight: normal; 72 text-transform: uppercase; 73 border-top : 1px solid blue; 74 border-bottom : 1px solid blue; 75} 76 77.gCal_pagelink a:hover { 78 background: Blue; 79 color: white; 80 text-decoration: none; 81} 82 83 84/* hide some elements on printout -------------------------------------------------------------- */ 85 86@media print { 87 .gCal_currentDate, 88 .gCal_link_prev, 89 .gCal_link_next, 90 .gCal_pagelink a {display:none} 91} 92 93 94/* style of date and weekday in month-view */ 95 96.gCal_mv_day { 97 font-size: 1.2em; 98 font-weight: bold; 99} 100 101.gCal_mv_weekday { 102 font-size: 0.8em; 103 font-weight: bold; 104} 105 106/* Weekdays 0=sunday ... 6=saturday */ 107 108td.gCal_wd { 109 border: 1px solid black; 110 padding: 3px; 111} 112 113td.gCal_wd_datecell {text-align: center} 114 115.gCal_wd { 116 background-color: transparent; 117 font-size: 1em; 118 color: black; 119} 120 121.gCal_wd_6 { /* saturday */ 122 background-color: #DDD; 123} 124 125.gCal_wd_0 { /* sunday */ 126 background-color: #FDD; 127 color: red; 128} 129 130td.gCal_wd_0 { /* sunday */ 131 border-bottom: 2px solid black; 132} 133 134td.gCal_wd_6 { /* saturday */ 135 border-top: 2px solid black; 136} 137 138@media screen { 139 td.gCal_today { 140 background-color: yellow; 141 border-top: 3px solid #FFA500; /*orange*/ 142 border-bottom: 3px solid #FFA500; /* orange*/ 143 } 144 145 td.gCal_todayFrame { 146 border-top: 3px solid #FFA500; 147 border-bottom: 3px solid #FFA500; 148 } 149} 150 151 152/* category-styles for date entries. The category has to be capitalized ! ---------------------- */ 153 154.gCal_event { /* Standard definition of an event entry */ 155 display: block; 156 font-size: 0.9em; 157 color:black; 158 padding-left: 25px; 159 padding-top: 3px; 160 padding-bottom: 3px; 161 background: url(images/date.gif) no-repeat center left; 162} 163 164