<?php
/**************************************************************************
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
@Authors: Ryan Thompson(hide@address.com)
***************************************************************************/
$stylesheet = "<style>
.main_month_header {
text-align: center;
font-size: $large_font;
font-family: $font_family;
font-weight: bolder;
background: $main_header_bg;
color: $main_header_colour;
}
.main_weekdays {
background: $main_weekdays_bg;
color: $main_weekdays_colour;
vertical-align: top;
font-family: $font_family;
font-size: $normal_font;
border: 1px solid black;
text-align: left;
}
.today {
background: $today_bg;
color: $today_colour;
vertical-align: top;
font-family: $font_family;
font-size: $font_size;
border: 1px solid black;
text-align: left;
}
a:link.today {
background: $today_bg;
color: $today_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
a:visited.today {
background: $today_bg;
color: $today_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
a:active.today {
background: $today_bg;
color: $today_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
a:hover.today {
background: $today_bg;
color: $today_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
.main_month {
background: $cell_bg;
color: $cell_colour;
font-size: $font_size;
vertical-align: top;
font-family: $font_family;
border: 1px solid black;
text-align: left;
}
a:link.main_month {
background: $cell_bg;
color: $cell_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
a:visited.main_month {
background: $cell_bg;
color: $cell_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
a:active.main_month {
background: $cell_bg;
color: $cell_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
a:hover.main_month {
background: $cell_bg;
color: $cell_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
.main_event {
background: $event_bg;
color: $event_colour;
font-size: $font_size;
vertical-align: top;
font-family: $font_family;
border: 1px solid black;
text-align: left;
}
a:link.main_event {
background: $event_bg;
color: $event_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
a:visited.main_event {
background: $event_bg;
color: $event_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
a:active.main_event {
background: $event_bg;
color: $event_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
a:hover.main_event {
background: $event_bg;
color: $event_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
.mini_month_header {
text-align: center;
font-size: $normal_font;
font-family: $font_family;
font-weight: bolder;
background: $mini_header_bg;
color: $mini_header_colour;
}
.mini_weekdays {
background: $mini_weekdays_bg;
color: $mini_weekdays_colour;
vertical-align: top;
font-family: $font_family;
font-size: $small_font;
font-weight: bold;
border: 1px solid black;
text-align: center;
}
.mini_month {
background: $mini_cell_bg;
color: $mini_cell_colour;
font-size: $font_size;
vertical-align: top;
font-family: $font_family;
border: 1px solid black;
text-align: left;
text-decoration: none;
}
a:link.mini_month {
background: $mini_cell_bg;
color: $mini_cell_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
a:visited.mini_month {
background: $mini_cell_bg;
color: $mini_cell_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
a:active.mini_month {
background: $mini_cell_bg;
color: $mini_cell_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
a:hover.mini_month {
background: $mini_cell_bg;
color: $mini_cell_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
.mini_event {
background: $event_bg;
color: $event_colour;
font-size: $font_size;
vertical-align: top;
font-family: $font_family;
border: 1px solid black;
text-align: left;
}
a:link.mini_event {
background: $event_bg;
color: $event_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
a:visited.mini_event {
background: $event_bg;
color: $event_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
a:active.mini_event {
background: $event_bg;
color: $event_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
a:hover.mini_event {
background: $event_bg;
color: $event_colour;
vertical-align: top;
font-family: $font_family;
border: 0px solid black;
text-align: left;
}
.day_cell {
background: $day_cell_bg;
color: $day_cell_colour;
border: 1px solid black
}
</style>";
?>