2015-04-09 22:50:16 +03:00
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
|
|
|
* @copyright Copyright (c) 2013 - 2015, Alex Tselegidis
|
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link http://easyappointments.org
|
|
|
|
* @since v1.0.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
2013-04-12 19:36:09 +03:00
|
|
|
root {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2015-04-22 23:44:59 +03:00
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2013-04-14 22:42:40 +03:00
|
|
|
body {
|
|
|
|
background-color: #CAEDF3;
|
|
|
|
}
|
|
|
|
|
2015-04-22 23:44:59 +03:00
|
|
|
#main {
|
|
|
|
display: table;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main .wrapper {
|
|
|
|
height: 100vh;
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2013-04-14 22:42:40 +03:00
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
/* BOOK APPOINTMENT WIZARD
|
2013-04-14 22:42:40 +03:00
|
|
|
------------------------------------------------------------------------------ */
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard {
|
2013-04-14 22:42:40 +03:00
|
|
|
background: #FFF;
|
|
|
|
box-shadow: 0px 1px 1px #B6B6B6;
|
2013-04-17 00:37:36 +03:00
|
|
|
min-height: 480px;
|
2015-04-22 23:44:59 +03:00
|
|
|
padding: 0;
|
2013-04-14 22:42:40 +03:00
|
|
|
}
|
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard #header {
|
2013-04-14 22:42:40 +03:00
|
|
|
padding: 5px;
|
2015-04-09 22:50:16 +03:00
|
|
|
height: 80px;
|
2013-04-14 22:42:40 +03:00
|
|
|
background: #3DD481;
|
2013-05-04 00:26:04 +03:00
|
|
|
border-bottom: 4px solid #1A865F;
|
2013-04-14 22:42:40 +03:00
|
|
|
}
|
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard #company-name {
|
2013-04-14 22:42:40 +03:00
|
|
|
font-weight: bold;
|
|
|
|
color: #FFF;
|
2013-10-16 18:53:26 +03:00
|
|
|
font-size: 22px;
|
2015-04-09 22:50:16 +03:00
|
|
|
margin: 18px 10px 0 14px;
|
2013-04-14 22:42:40 +03:00
|
|
|
display: inline-block;
|
|
|
|
text-shadow: 0px 1px 1px #8F8888;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard #steps {
|
2015-04-09 22:50:16 +03:00
|
|
|
width: 180px;
|
2013-04-14 22:42:40 +03:00
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
2015-04-09 22:50:16 +03:00
|
|
|
margin-top: 12px;
|
2013-04-14 22:42:40 +03:00
|
|
|
}
|
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard .wizard-frame {
|
2013-04-14 22:42:40 +03:00
|
|
|
padding: 10px 20px;
|
2015-04-09 22:50:16 +03:00
|
|
|
height: 485px;
|
2013-04-20 20:20:16 +03:00
|
|
|
}
|
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard .wizard-frame .frame-container {
|
2015-04-09 22:50:16 +03:00
|
|
|
height: 395px;
|
2013-04-20 20:20:16 +03:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard .frame-container .frame-title {
|
2013-05-20 20:21:58 +03:00
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 28px;
|
|
|
|
}
|
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard .frame-container .frame-content {
|
2013-05-20 20:21:58 +03:00
|
|
|
margin: auto;
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard .wizard-frame .command-buttons {
|
2013-04-20 20:20:16 +03:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard .wizard-frame .command-buttons .btn {
|
2013-04-20 20:20:16 +03:00
|
|
|
min-width: 80px;
|
|
|
|
margin-right: 10px;
|
2013-04-14 22:42:40 +03:00
|
|
|
}
|
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard .book-step {
|
2013-04-14 22:42:40 +03:00
|
|
|
display: inline-block;
|
2015-04-09 22:50:16 +03:00
|
|
|
height: 30px;
|
|
|
|
width: 30px;
|
2013-04-14 22:42:40 +03:00
|
|
|
float: left;
|
2013-04-17 00:37:36 +03:00
|
|
|
background: #FFF;
|
2015-04-09 22:50:16 +03:00
|
|
|
padding: 1px;
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-top: 9px;
|
2013-04-17 00:37:36 +03:00
|
|
|
border: 3px solid #38A07A;
|
2013-04-14 22:42:40 +03:00
|
|
|
}
|
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard .book-step strong {
|
2015-04-09 22:50:16 +03:00
|
|
|
font-size: 15px;
|
2013-04-14 22:42:40 +03:00
|
|
|
display: block;
|
|
|
|
text-align: center;
|
2015-04-09 22:50:16 +03:00
|
|
|
color: #A9C5BB;
|
2013-04-14 22:42:40 +03:00
|
|
|
}
|
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard .active-step {
|
2013-04-20 20:20:16 +03:00
|
|
|
display: inline-block;
|
2015-04-09 22:50:16 +03:00
|
|
|
height: 40px;
|
|
|
|
width: 40px;
|
2013-04-20 20:20:16 +03:00
|
|
|
float: left;
|
|
|
|
background: #FFF;
|
2015-04-09 22:50:16 +03:00
|
|
|
padding: 1px;
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-top: 3px;
|
2013-04-20 20:20:16 +03:00
|
|
|
border: 3px solid #38A07A;
|
|
|
|
}
|
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard .active-step strong {
|
2015-04-09 22:50:16 +03:00
|
|
|
color: #38A07A;
|
|
|
|
font-size: 22px;
|
2013-04-14 22:42:40 +03:00
|
|
|
}
|
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard #frame-footer {
|
2013-04-14 22:42:40 +03:00
|
|
|
padding: 10px;
|
|
|
|
text-align: center;
|
|
|
|
border-top: 1px solid #EEE;
|
|
|
|
background: #FAFAFA;
|
2013-04-17 00:37:36 +03:00
|
|
|
}
|
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard #steps .custom-qtip {
|
2013-04-17 00:37:36 +03:00
|
|
|
border-width: 2px;
|
|
|
|
}
|
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard #available-hours .available-hour {
|
2013-04-20 20:20:16 +03:00
|
|
|
font-size: 15px;
|
|
|
|
padding: 1px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard #available-hours .available-hour:hover {
|
2013-04-17 00:37:36 +03:00
|
|
|
font-weight: bold;
|
|
|
|
background-color: #CAEDF3;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard #available-hours .selected-hour {
|
2013-04-17 00:37:36 +03:00
|
|
|
color: #0088cc;
|
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2013-04-20 20:20:16 +03:00
|
|
|
|
2013-06-03 17:42:19 +03:00
|
|
|
#book-appointment-wizard .span3 {
|
2013-04-20 20:20:16 +03:00
|
|
|
min-width: 270px; /* This is especially needed for ie8 */
|
|
|
|
}
|
2013-06-03 17:42:19 +03:00
|
|
|
|
2013-06-20 00:12:06 +03:00
|
|
|
#book-appointment-wizard #appointment-details p,
|
2013-09-13 16:21:03 +03:00
|
|
|
#book-appointment-wizard #customer-details p {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#book-appointment-wizard #service-description {
|
|
|
|
margin-top: 10px;
|
2013-10-10 19:50:33 +03:00
|
|
|
padding: 10px;
|
2013-09-13 16:21:03 +03:00
|
|
|
background: #F5F5F5;
|
|
|
|
border: 1px solid #EEE;
|
|
|
|
border-radius: 5px;
|
2013-10-10 19:50:33 +03:00
|
|
|
min-height: 80px;
|
2013-09-13 16:21:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#book-appointment-wizard #wizard-frame-1 label {
|
|
|
|
font-size: 19px;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#book-appointment-wizard #wizard-frame-1 select {
|
|
|
|
margin-bottom: 25px;
|
|
|
|
}
|
2013-06-20 00:12:06 +03:00
|
|
|
|
2015-04-09 22:50:16 +03:00
|
|
|
#language-list {
|
|
|
|
list-style: none;
|
|
|
|
padding-left: 0px;
|
|
|
|
}
|
|
|
|
|
2013-06-20 00:12:06 +03:00
|
|
|
|
|
|
|
/* CANCEL APPOINTMENT
|
|
|
|
------------------------------------------------------------------------- */
|
2013-06-03 17:42:19 +03:00
|
|
|
#cancel-appointment-frame {
|
2015-04-09 22:50:16 +03:00
|
|
|
padding: 15px;
|
2013-09-13 16:21:03 +03:00
|
|
|
background: #FAFAFA;
|
2013-06-08 12:54:45 +03:00
|
|
|
border-bottom: 1px solid #E2E2E2;
|
2013-12-18 19:05:39 +02:00
|
|
|
overflow: auto;
|
2013-06-03 17:42:19 +03:00
|
|
|
}
|
|
|
|
|
2013-06-08 12:54:45 +03:00
|
|
|
#cancel-appointment-frame p {
|
|
|
|
display: inline-block;
|
2015-04-09 22:50:16 +03:00
|
|
|
margin: 6px 10px 0;
|
2013-12-18 19:05:39 +02:00
|
|
|
width: 515px;
|
2013-06-08 12:54:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#cancel-appointment-frame form {
|
|
|
|
display: inline;
|
2015-04-09 22:50:16 +03:00
|
|
|
}
|