2016-03-04 20:15:48 +00:00
|
|
|
@charset "utf-8";
|
|
|
|
/* CSS Document */
|
|
|
|
|
|
|
|
/* ---------- FONTAWESOME ---------- */
|
|
|
|
/* ---------- http://fortawesome.github.com/Font-Awesome/ ---------- */
|
|
|
|
/* ---------- http://weloveiconfonts.com/ ---------- */
|
|
|
|
|
|
|
|
@import url(http://weloveiconfonts.com/api/?family=fontawesome);
|
|
|
|
|
|
|
|
*[class*="fontawesome-"]:before {
|
|
|
|
font-family: 'FontAwesome', sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------- GENERAL ---------- */
|
|
|
|
|
|
|
|
body {
|
|
|
|
background: #f9f9f9;
|
|
|
|
color: #0e171c;
|
2016-03-14 21:13:31 +00:00
|
|
|
font: 300 100%/1.5em 'Lato', sans-serif;
|
2016-03-04 20:15:48 +00:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Month size*/
|
|
|
|
h2 {
|
2016-03-14 21:13:31 +00:00
|
|
|
font-size: 1.5em;
|
|
|
|
line-height: 1.25em;
|
|
|
|
margin: .25em 0;
|
2016-03-04 20:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
2016-03-14 21:13:31 +00:00
|
|
|
font-size: 1.5em;
|
|
|
|
line-height: 1em;
|
|
|
|
margin: .33em 0;
|
2016-03-04 20:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
/*border-collapse: collapse;*/
|
|
|
|
border-spacing: 0;
|
2016-03-14 21:13:31 +00:00
|
|
|
margin:auto;
|
2016-03-04 20:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
2016-03-14 21:13:31 +00:00
|
|
|
height: 558px;
|
2016-03-04 20:15:48 +00:00
|
|
|
left: 50%;
|
2016-03-14 21:13:31 +00:00
|
|
|
margin: -255px 0 0 -245px;
|
2016-03-04 20:15:48 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
2016-03-14 21:13:31 +00:00
|
|
|
width: 540px;
|
2016-03-04 20:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------- CALENDAR ---------- */
|
|
|
|
|
|
|
|
.calendar {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar header {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar h2 {
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #1A6687;
|
|
|
|
}
|
|
|
|
/*Title*/
|
|
|
|
.calendar thead {
|
|
|
|
font-weight: 600;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #8BC4C9;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Body text*/
|
|
|
|
.calendar tbody {
|
|
|
|
color: #7c8a95;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*select date*/
|
|
|
|
.calendar tbody td:hover {
|
2016-03-14 21:13:31 +00:00
|
|
|
border: .5px solid #8BC4C9;
|
|
|
|
-webkit-border: .5px solid none;
|
|
|
|
border-radius: 50%;
|
2016-03-04 20:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.calendar td {
|
2016-03-14 21:13:31 +00:00
|
|
|
border: .5px solid transparent;
|
2016-03-04 20:15:48 +00:00
|
|
|
border-radius: 50%;
|
|
|
|
display: inline-block;
|
2016-03-14 21:13:31 +00:00
|
|
|
height: 2.5em;
|
|
|
|
line-height: 2.5em;
|
2016-03-04 20:15:48 +00:00
|
|
|
text-align: center;
|
2016-03-14 21:13:31 +00:00
|
|
|
width: 2.5em;
|
|
|
|
|
2016-03-04 20:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .prev-month,
|
|
|
|
.calendar .next-month {
|
|
|
|
color: #cbd1d2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .prev-month:hover,
|
|
|
|
.calendar .next-month:hover {
|
2016-03-14 21:13:31 +00:00
|
|
|
border: .5px solid #cbd1d2;
|
2016-03-04 20:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*Today*/
|
|
|
|
.current-day {
|
|
|
|
background: #8BC4C9;
|
|
|
|
color: #f9f9f9;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event {
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Little dot*/
|
|
|
|
.event:after {
|
|
|
|
background: #8BC4C9;
|
|
|
|
border-radius: 50%;
|
2016-03-14 21:13:31 +00:00
|
|
|
bottom: .35em;
|
2016-03-04 20:15:48 +00:00
|
|
|
display: block;
|
|
|
|
content: '';
|
2016-03-14 21:13:31 +00:00
|
|
|
height: .35em;
|
2016-03-04 20:15:48 +00:00
|
|
|
left: 50%;
|
2016-03-14 21:13:31 +00:00
|
|
|
margin: -.25em 0 0 -.25em ;
|
2016-03-04 20:15:48 +00:00
|
|
|
position: absolute;
|
2016-03-14 21:13:31 +00:00
|
|
|
width: .35em;
|
2016-03-04 20:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.event.current-day:after {
|
|
|
|
background: #f9f9f9;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Next,Prev month*/
|
|
|
|
.btn-prev,
|
|
|
|
.btn-next {
|
2016-03-14 21:13:31 +00:00
|
|
|
border: 1px solid transparent;
|
2016-03-04 20:15:48 +00:00
|
|
|
color: #8BC4C9;
|
|
|
|
height: 2em;
|
|
|
|
font-size: .75em;
|
|
|
|
line-height: 2em;
|
2016-03-14 21:13:31 +00:00
|
|
|
margin: auto;
|
2016-03-04 20:15:48 +00:00
|
|
|
position: absolute;
|
2016-03-14 21:13:31 +00:00
|
|
|
top: .3em;
|
|
|
|
width: 10em;
|
2016-03-04 20:15:48 +00:00
|
|
|
}
|
|
|
|
|
2016-03-14 21:13:31 +00:00
|
|
|
|
2016-03-04 20:15:48 +00:00
|
|
|
.btn-prev:hover,
|
|
|
|
.btn-next:hover {
|
|
|
|
background: none;
|
|
|
|
color: #1A6687;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-prev {
|
2016-03-14 21:13:31 +00:00
|
|
|
left: 6em;
|
2016-03-04 20:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-next {
|
2016-03-14 21:13:31 +00:00
|
|
|
right: 6em;
|
2016-03-04 20:15:48 +00:00
|
|
|
}
|