| 1 | /*!! |
|---|
| 2 | Epoch DHTML JavaScript Calendar - Version 2.0.2 |
|---|
| 3 | English Edition |
|---|
| 4 | CSS Style File |
|---|
| 5 | (c) 2006-2007 MeanFreePath |
|---|
| 6 | Free for NON-COMMERCIAL use - see website for details and updates |
|---|
| 7 | http://www.meanfreepath.com/javascript_calendar/index.html |
|---|
| 8 | !!*/ |
|---|
| 9 | |
|---|
| 10 | table.calendar { |
|---|
| 11 | font-family: Helvetica, Arial, sans-serif; |
|---|
| 12 | font-size: 0.8em; |
|---|
| 13 | border-collapse: collapse; |
|---|
| 14 | background-color: white; |
|---|
| 15 | border: solid #999999 1px; |
|---|
| 16 | background-color: white; |
|---|
| 17 | width: 215px; |
|---|
| 18 | text-align: center; |
|---|
| 19 | /*prevent user from selecting text in Mozilla & Safari - check calendar constructor for IE code)*/ |
|---|
| 20 | -moz-user-select: none; |
|---|
| 21 | /*-khtml-user-select: none;*/ |
|---|
| 22 | } |
|---|
| 23 | table.calendar a { |
|---|
| 24 | } |
|---|
| 25 | table.calendar a:hover { |
|---|
| 26 | } |
|---|
| 27 | table.calendar input, table.calendar select { |
|---|
| 28 | font-size: 10px; |
|---|
| 29 | } |
|---|
| 30 | table.calendar td, table.calendar th { |
|---|
| 31 | border: 0; |
|---|
| 32 | font-size: 10px; |
|---|
| 33 | text-align: center; |
|---|
| 34 | } |
|---|
| 35 | div.mainheading { |
|---|
| 36 | margin: 2px; |
|---|
| 37 | } |
|---|
| 38 | .closeBtn { |
|---|
| 39 | /*float: right; |
|---|
| 40 | width: 15px; |
|---|
| 41 | /*font-size: 1.5em; |
|---|
| 42 | height: 13px; |
|---|
| 43 | |
|---|
| 44 | padding: 0 0 3px 0; |
|---|
| 45 | margin: 1px 8px 0 0; |
|---|
| 46 | border: solid black 1px;*/ |
|---|
| 47 | } |
|---|
| 48 | /*all styles related to the main calendar grid*/ |
|---|
| 49 | table.cells { |
|---|
| 50 | border-collapse: collapse; |
|---|
| 51 | border: solid #CCCCCC 1px; |
|---|
| 52 | cursor: pointer; |
|---|
| 53 | empty-cells: show; |
|---|
| 54 | margin: 0 6px 0 6px; |
|---|
| 55 | } |
|---|
| 56 | /*the day headings*/ |
|---|
| 57 | table.cells th { |
|---|
| 58 | border: solid #CCCCCC 1px; |
|---|
| 59 | text-align: left; |
|---|
| 60 | font-weight: bold; |
|---|
| 61 | color: #0054E3; |
|---|
| 62 | width: 22px; |
|---|
| 63 | } |
|---|
| 64 | table.cells th.wkhead { |
|---|
| 65 | border-right: double #CCCCCC 3px; |
|---|
| 66 | cursor: default; |
|---|
| 67 | width: 22px; |
|---|
| 68 | } |
|---|
| 69 | /*The date cells*/ |
|---|
| 70 | table.cells td { |
|---|
| 71 | border: solid #CCCCCC 1px; |
|---|
| 72 | vertical-align: top; |
|---|
| 73 | text-align: left; |
|---|
| 74 | font-weight: bold; |
|---|
| 75 | height: 20px; /*IE doesn't like ems*/ |
|---|
| 76 | } |
|---|
| 77 | table.cells td.wkhead { |
|---|
| 78 | background-color: white; |
|---|
| 79 | text-align: center; |
|---|
| 80 | border-right: double #CCCCCC 3px; |
|---|
| 81 | color: #0054E3; |
|---|
| 82 | } |
|---|
| 83 | table.cells td.noselect { |
|---|
| 84 | background-color: #EEEEEE; |
|---|
| 85 | color: #BBBBBB; |
|---|
| 86 | text-decoration: line-through; |
|---|
| 87 | cursor: default; |
|---|
| 88 | } |
|---|
| 89 | table.cells td.hlday { |
|---|
| 90 | background-color: #99FF99; |
|---|
| 91 | } |
|---|
| 92 | table.cells td.wkday { |
|---|
| 93 | background-color: #DDDDDD; |
|---|
| 94 | } |
|---|
| 95 | table.cells td.wkend { |
|---|
| 96 | background-color: #DDDDDD; |
|---|
| 97 | } |
|---|
| 98 | table.cells td.curdate { |
|---|
| 99 | |
|---|
| 100 | } |
|---|
| 101 | table.cells td.cell_selected { |
|---|
| 102 | background-color: #99CCFF; |
|---|
| 103 | color: black; |
|---|
| 104 | } |
|---|
| 105 | table.cells td.notmnth { |
|---|
| 106 | background-color: #FFFFFF; |
|---|
| 107 | color: #CCCCCC; |
|---|
| 108 | } |
|---|
| 109 | table.cells td.notallowed { |
|---|
| 110 | background-color: white; |
|---|
| 111 | color: #EEEEEE; |
|---|
| 112 | font-style: italic; |
|---|
| 113 | } |
|---|
| 114 | table.cells td.hover { |
|---|
| 115 | background-color: #999999; |
|---|
| 116 | } |
|---|
| 117 | table.cells td div { |
|---|
| 118 | padding: 1px; |
|---|
| 119 | margin: 0; |
|---|
| 120 | } |
|---|