PluginProbe
Booking Calendar / 11.3
Booking Calendar v11.3
11.8.2 11.8.1 11.8 11.7 11.6.1 11.6 11.5 11.4.3 11.4.2 11.4.1 11.4 11.3 11.2.1 11.2 11.1 11.0 10.15.7 10.15.6 10.1.3 10.10 10.10.1 10.10.2 10.11 10.11.2 10.11.3 All 202 releases
booking / includes / __css / client / form_fields / form__templates.css

form__templates.css in Booking Calendar 11.3, at includes/__css/client/form_fields/form__templates.css

91 lines 2.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*! == Align Form Elements ====================================================================================== */
2 /*! == Right == */
3 .wpbc_aling_right,
4 .wpbc_aling_right .wpbc_times_selector {
5 justify-content: flex-end !important;
6 }
7 @media (max-width: 400px) {
8 .wpbc_aling_right .wpbc_times_selector div {
9 margin: 7px 0 0 0;
10 }
11 }
12 /*! == Center == */
13 .wpbc_aling_center,
14 .wpbc_aling_center .wpbc_times_selector {
15 justify-content: center !important;
16 }
17 /*! == Simple booking form - Center == */
18 .wpbc_container_booking_form .wpbc_booking_form_simple .wpbc_aling_center .wpbc__field {
19 justify-content: center !important;
20 }
21 .wpbc_container_booking_form .wpbc_booking_form_simple .wpbc_aling_center .wpbc__field label{
22 text-align: center !important;
23 }
24 /*! == Center Calendar ? == */
25 .wpbc_aling_center .wpbc_calendar_wraper{
26 display: flex;
27 flex-flow: column nowrap;
28 justify-content: center;
29 align-items: center;
30 }
31 @media (max-width: 400px) {
32 .wpbc_aling_center .wpbc_times_selector div {
33 margin: 7px 0;
34 }
35 }
36 /*! == Wizard Form Tmeplate - Bordered Well Padding ============================================================ */
37 .wpbc_wizard__border_container {
38 box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 6px 0px;
39 border: 1px solid rgb(204, 204, 204);
40 border-radius: 2px;
41 background: #FFF;
42 padding: 10px 30px;
43 box-sizing: border-box;
44 margin: auto;
45 max-width: 100%;
46 width: 100%;
47 max-width: Min(900px, 100%);
48 }
49 .wpbc_wizard__border_container,
50 .wpbc_wizard__border_container p {
51 font-size: 16px;
52 font-weight: 400;
53 }
54 .wpbc_times_selector div,
55 .wpbc_wizard__border_container .wpbc_times_selector div {
56 flex: 1 1 auto;
57 /*max-width: Min(260px, 100%);*/
58 min-width: Min(90px, 100%);
59 white-space: wrap;
60 word-break: normal;
61 }
62 .wpbc_theme_dark_1 .wpbc_wizard__border_container {
63 border: 1px solid rgb(0, 0, 0);
64 background: #626262;
65 color: #bbb;
66 box-shadow: 0 0px 3px #3b3b3b;
67 }
68 /* Exclude calendar elements. */
69 .wpbc_theme_dark_1 .wpbc_wizard__border_container div:not(.datepick-inline *),
70 .wpbc_theme_dark_1 .wpbc_wizard__border_container span:not(.datepick-inline *),
71 .wpbc_theme_dark_1 .wpbc_wizard__border_container p,
72 .wpbc_theme_dark_1 .wpbc_wizard__border_container label {
73 color: #fff;
74 }
75 /* Default text color */
76 div.wpbc_container.wpbc_form,
77 div.wpbc_container.wpbc_form input,
78 div.wpbc_container.wpbc_form label,
79 div.wpbc_container.wpbc_form select,
80 div.wpbc_container.wpbc_form button,
81 div.wpbc_container.wpbc_form textarea {
82 color:#3c434a;
83 }
84 div.wpbc_container.wpbc_form.wpbc_theme_dark_1,
85 div.wpbc_container.wpbc_form.wpbc_theme_dark_1 input,
86 div.wpbc_container.wpbc_form.wpbc_theme_dark_1 label,
87 div.wpbc_container.wpbc_form.wpbc_theme_dark_1 select,
88 div.wpbc_container.wpbc_form.wpbc_theme_dark_1 button,
89 div.wpbc_container.wpbc_form.wpbc_theme_dark_1 textarea {
90 color: #bbb;
91 }