123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- @import url('demo.css');
- @font-face {
- font-family: 'fontawesome-selected';
- src: url("../font/fontawesome-selected.eot");
- src: url("../font/fontawesome-selected.eot?#iefix") format('embedded-opentype'), url("../font/fontawesome-selected.woff") format('woff'), url("../font/fontawesome-selected.ttf") format('truetype'), url("../font/fontawesome-selected.svg#fontawesome-selected") format('svg');
- font-weight: normal;
- font-style: normal;
- }
- .fc-calendar-container {
- position: relative;
- /*border: 1px dashed red;*/
- }
- .fc-calendar {
- width: 300px;
- height: 280px;
- margin-top:10px;
- margin-left: auto;
- margin-right: auto;
- text-align: center;
- }
- .fc-calendar .fc-head {
- height: 40px;
- line-height: 40px;
- background: #ccc;
- color: #fff;
- width: 280px;
- margin-left: auto;
- margin-right: auto;
- text-align: center;
- }
- .fc-calendar .fc-body {
- position: relative;
- width: 282px;
- height: 242px;
- border: 1px solid #ddd;
- margin-left: auto;
- margin-right: auto;
- text-align: center;
- }
- .fc-calendar .fc-row {
- width: 280px;
- }
- .fc-four-rows .fc-row {
- height: 25%;
- }
- .fc-five-rows .fc-row {
- height: 20%;
- }
- .fc-six-rows .fc-row {
- height: 40px;
- }
- .fc-calendar .fc-row > div,
- .fc-calendar .fc-head > div {
- float: left;
- height: 38px;
- width: 38px;
- margin:1px;
- position: relative;
- }
- /* IE 9 is rounding up the calc it seems */
- .ie9 .fc-calendar .fc-row > div,
- .ie9 .fc-calendar .fc-head > div {
- width: 14.2%;
- }
- .fc-calendar .fc-row > div {
- overflow: hidden;
- position: relative;
- }
- .fc-calendar .fc-head > div {
- text-align: center;
- }
- .fc-calendar .fc-row > div > span.fc-date {
- position: absolute;
- width: 30px;
- height: 20px;
- font-size: 20px;
- line-height: 20px;
- font-weight: 700;
- color: #ddd;
- text-shadow: 0 -1px 0 rgba(255,255,255,0.8);
- bottom: 5px;
- right: 5px;
- text-align: right;
- }
- .fc-calendar .fc-row > div > span.fc-weekday {
- padding-left: 5px;
- display: none;
- }
- .fc-calendar .fc-row > div.fc-today {
- background: #fff4c3;
- }
- .fc-calendar .fc-row > div.fc-out {
- opacity: 0.6;
- }
- .fc-calendar .fc-row > div:last-child,
- .fc-calendar .fc-head > div:last-child {
- border-right: none;
- }
- .fc-calendar .fc-row:last-child {
- border-bottom: none;
- }
|