Customise Booking Page: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 126: | Line 126: | ||
/*code for a shadow arround your booking page*/ | /*code for a shadow arround your booking page*/ | ||
<nowiki>#</nowiki>bookingpage { | m<nowiki>#</nowiki>bookingpage { | ||
-webkit-box-shadow:0 1px 2px rgba(0, 10, 10, 0.38); | |||
-webkit-box-shadow:0 1px 2px rgba(0, 10, 10, 0.38); | -moz-box-shadow:0 1px 2px rgba(0, 10, 10, 0.38); | ||
box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1); | |||
-moz-box-shadow:0 1px 2px rgba(0, 10, 10, 0.38); | box-shadow: 0 1px 2px rgba(0, 10, 10, 0.38); | ||
margin-bottom: 20px; | |||
box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1); | } | ||
box-shadow: 0 1px 2px rgba(0, 10, 10, 0.38); | |||
margin-bottom: 20px; | |||
} | |||
== Booking Page with Rounded Corners == | == Booking Page with Rounded Corners == | ||
| Line 143: | Line 138: | ||
/*code for rounded corners*/ | /*code for rounded corners*/ | ||
<nowiki>#</nowiki>bookingpage { | <nowiki>#</nowiki>bookingpage { | ||
border-radius: 7px; | |||
border-radius: 7px; | -webkit-border-radius: 7px; | ||
-moz-border-radius: 7px; | |||
-webkit-border-radius: 7px; | } | ||
-moz-border-radius: 7px; | |||
} | |||