diff --git a/assets/css/manager.css b/assets/css/manager.css
index 4a0084c..59a63a7 100644
--- a/assets/css/manager.css
+++ b/assets/css/manager.css
@@ -82,6 +82,8 @@ table.seat td:first-child {
backface-visibility: hidden;
}
+/* pop up window */
+
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
@@ -96,7 +98,6 @@ table.seat td:first-child {
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
-/* Modal Content */
.modal-content {
background-color: #fefefe;
margin: auto;
@@ -121,6 +122,89 @@ table.seat td:first-child {
cursor: pointer;
}
+/*Full calendar*/
+
+
+.fc-container{
+ padding-left: 5%;
+ padding-right: 5%;
+ padding-top: 3em;
+}
+
+.fc-container .fc-unthemed th,
+.fc-container .fc-unthemed td,
+.fc-container .fc-unthemed thead,
+.fc-container .fc-unthemed tbody,
+.fc-container .fc-unthemed .fc-divider,
+.fc-container .fc-unthemed .fc-row,
+.fc-container .fc-unthemed .fc-content, /* for gutter border */
+.fc-container .fc-unthemed .fc-popover,
+.fc-container .fc-unthemed .fc-list-view,
+.fc-container .fc-unthemed .fc-list-heading td {
+ border-color: #1f2c3d;
+}
+
+.fc-container .fc-unthemed td.fc-today {
+ background: #ffd446;
+}
+
+.fc-container .fc-event {
+ position: relative; /* for resize handle and other inner positioning */
+ display: block; /* make the tag block */
+ font-size: .85em;
+ line-height: 1.3;
+ border-radius: 3px;
+ border: 1px solid #000000; /* default BORDER color */
+ font-weight: bold; /* undo jqui's ui-widget-header bold */
+}
+
+.fc-container .fc-event,
+.fc-container .fc-event-dot {
+ background-color: #1f2c3d; /* default BACKGROUND color */
+}
+
+/* overpower some of bootstrap's and jqui's styles on tags */
+.fc-container .fc-event,
+.fc-container .fc-event:hover,
+.fc-container .ui-widget .fc-event {
+ color: #d3ebff; /* default TEXT color */
+ text-decoration: none; /* if has an href */
+}
+.fc-container .fc-state-default {
+ background-color: #1f2c3d;
+ background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
+ background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
+ background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
+ background-image: linear-gradient(to bottom, #1f2c3d, #1f2c3d);
+ background-repeat: repeat-x;
+ border-color: #e6e6e6 #e6e6e6 #bfbfbf;
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
+ color: #d3ebff;
+ text-shadow: 0 1px 1px rgb(255 255 255 / 75%);
+ box-shadow: inset 0 1px 0 rgb(255 255 255 / 20%), 0 1px 2px rgb(0 0 0 / 5%);
+}
+
+.fc-container .fc-toolbar {
+ text-align: center;
+ background-color: #1f2c3d;
+}
+
+.fc-container .fc-toolbar h2 {
+ margin: 0;
+ margin-top: 0px;
+ margin-right: 0px;
+ margin-bottom: 0px;
+ margin-left: 0px;
+ color: #d3ebff;
+}
+
+.fc-container .fc-view-container *, .fc-view-container *:before, .fc-view-container *:after {
+ -webkit-box-sizing: content-box;
+ -moz-box-sizing: content-box;
+ box-sizing: content-box;
+ margin: auto;
+}
/*
lists like tables
@@ -240,4 +324,4 @@ General configuration
grid-column-start: 5;
grid-column-end: 6;
grid-template-columns: auto;
-}
+}
\ No newline at end of file