From: Ove Klykken Date: Mon, 23 Jun 2014 17:56:29 +0000 (-0400) Subject: -CSS system for client to add their calendar dates for departures X-Git-Tag: v1.0^2~24 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=5ec717c33cbd453c57014a4bcb36c0c4c9cd35d7;p=web%2FSooLocks.git -CSS system for client to add their calendar dates for departures --- diff --git a/styles.css b/styles.css index 62d5b35..f787b7b 100644 --- a/styles.css +++ b/styles.css @@ -11,6 +11,33 @@ width: 100% !important; height: 100% !important; } +/* Client Toolbox 'calendar; for departures */ +.glmCalendar { + border-radius: 5px; + border: 2px solid #ccc; + overflow: hidden; + } +.glmCalendar, glmCalendar li { + list-style-type: none; + margin: 0; + padding: 0; + display: block; } +.glmCalendar li { + } +.glmCalendar li:nth-child(odd) { + background: rgb(51, 102, 153); + color: white; + padding: 5px; + font-weight: bold; + text-align: center; + } +.glmCalendar li:nth-child(even) { + background: rgb(204, 204, 204); + padding: 5px; + text-align: center; + } +/* END client calendar */ + body { background: url(assets/bg2.jpg) center top fixed; }