timum-booking-full-styling
by timum
HTML
<div id="bookingjs"></div>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@timum/timum-booking@^2.10.1/dist/main.booking.js"></script>
<script type="text/javascript">
Timum().init({
resourceId: "parkview-living@98abd230-278e-11ed-ada0-0289ed224998@timum",
availability: {
length: "1 hour"
}
});
</script>
CSS
/*!
* Booking.js
* http://timekit.io
* (c) 2015 Timekit Inc.
*/
@-webkit-keyframes spin {
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes spin {
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-webkit-keyframes shake {
0% {
-webkit-transform: translateX(0px);
transform: translateX(0px);
}
25% {
-webkit-transform: translateX(5px);
transform: translateX(5px);
}
50% {
-webkit-transform: translateX(-5px);
transform: translateX(-5px);
}
75% {
-webkit-transform: translateX(5px);
transform: translateX(5px);
}
100% {
-webkit-transform: translateX(0px);
transform: translateX(0px);
}
}
@keyframes shake {
0% {
-webkit-transform: translateX(0px);
transform: translateX(0px);
}
25% {
-webkit-transform: translateX(5px);
transform: translateX(5px);
}
50% {
-webkit-transform: translateX(-5px);
transform: translateX(-5px);
}
75% {
-webkit-transform: translateX(5px);
transform: translateX(5px);
}
100% {
-webkit-transform: translateX(0px);
transform: translateX(0px);
}
}
.bookingjs {
position: relative;
font-family: "Open Sans", Helvetica, Tahoma, Arial, sans-serif;
font-size: 13px;
border-radius: 4px;
background-color: white;
-webkit-box-shadow: 0 3px 40px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 3px 40px 0 rgba(0, 0, 0, 0.15);
margin: 20px auto 20px auto;
z-index: 10;
opacity: 1;
color: #333;
border-top: 1px solid #ececec;
min-height: 200px;
}
.bookingjs.has-avatar {
margin-top: 60px;
}
.bookingjs-calendar {
border-bottom: 1px solid #ececec;
}
.is-small.has-avatar.has-displayname .bookingjs-calendar .fc-toolbar {
padding-bottom: 24px;
}
.is-small.has-avatar .bookingjs-calendar .fc-toolbar .fc-right h2 {
display: none;
}
.bookingjs-footer...