@import "plugins/nextgen";
@import "plugins/gravityForms";
- @import "plugins/events";
\ No newline at end of file
+ @import "plugins/events";
+ @import "plugins/fullCalendar";
\ No newline at end of file
--- /dev/null
+#eventCalendar{
+ .fc-toolbar{
+
+ /* apply button styles here to affect all of the buttons */
+ .fc-button{
+
+ }
+ .fc-button.fc-state-active{
+// background: red;
+ }
+ .fc-button.fc-state-hover{
+// transition: all ease .6s;
+// -webkit-transition: all ease .6s;
+// -moz-transition: all ease .5s;
+// background: blue;
+ }
+
+ /* affect only today, prev and next buttons */
+ .fc-left{
+ .fc-button{
+
+ }
+ .fc-today-button{
+
+ }
+ }
+
+ /* affect only month, week, day buttons */
+ .fc-right{
+ .fc-button-group{
+ .fc-button{
+// background: white;
+ }
+ .fc-button.fc-state-active{
+// background: green;
+ }
+ .fc-button.fc-state-hover{
+
+ }
+ }
+ }
+
+ /* Calendar Title / Current Month or Date */
+ .fc-center{
+ h2{
+
+ }
+ }
+ }
+
+ /* Calendar container and agenda views */
+ .fc-view-container{
+ /* dates, days or months at the top of each column (sun, mon, tue, wed, thur, fri, sat) */
+ .fc-head{
+ .fc-widget-header{
+// color: red;
+ }
+ }
+ .fc-agendaDay-view{
+
+ }
+ .fc-month-view{
+
+ }
+ .fc-agendaWeek-view{
+
+ }
+ .fc-body{
+ .fc-widget-content{
+
+ }
+ }
+ }
+}