summaryrefslogtreecommitdiff
path: root/www/styles/nextshows.css
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2016-06-25 01:44:59 (GMT)
committerChristian Pointner <equinox@helsinki.at>2016-06-25 01:45:20 (GMT)
commit725acfe74356e46580dcc727b0f799d3e3ec3e06 (patch)
tree61768e011d89ee92b6dd3b5f4077bfa4188ce493 /www/styles/nextshows.css
parent08faf157b1d86e565d34bfb9507e8fc3d662d1f6 (diff)
css for nextshow is almost done (needs testing)
Diffstat (limited to 'www/styles/nextshows.css')
-rw-r--r--www/styles/nextshows.css59
1 files changed, 55 insertions, 4 deletions
diff --git a/www/styles/nextshows.css b/www/styles/nextshows.css
index b45514e..73efce8 100644
--- a/www/styles/nextshows.css
+++ b/www/styles/nextshows.css
@@ -19,20 +19,22 @@
* along with rhrdweb. If not, see <http://www.gnu.org/licenses/>.
*/
-body, #container {
+body {
+ font-family: "Droid Sans", Helvetica, Arial, Sans;
margin: 0;
padding: 0;
- font-size: 42px;
+ font-size: 48px;
}
+
#header {
- background-color: #101010;
+ background-color: #36373B;
width: 100%;
color: white;
}
#clock {
- padding: 0.4em;
+ padding: 0.1em;
}
#clock span {
@@ -52,3 +54,52 @@ body, #container {
padding: 0.1em;
font-weight: bold;
}
+
+
+
+#shows div.show {
+ padding: 0.1em 0;
+}
+
+#shows div:nth-child(odd) {
+ background-color: white;
+}
+
+#shows div:nth-child(even) {
+ background-color: #E0E0E0;
+}
+
+div.show span {
+ font-weight: bold;
+ margin: 0.1em 0.22em;
+}
+
+div.show span.show-start, div.show span.show-end {
+ font-size: 0.75em;
+ margin-left: 1em;
+ margin-right: 1em;
+}
+
+span.show-start {
+ float: left;
+}
+
+span.show-end {
+ float: right;
+}
+
+span.show-title {
+ white-space:nowrap;
+ overflow:hidden;
+ clear: both;
+ display: block;
+ text-align: center;
+}
+
+#shows div:first-child {
+ padding-bottom: 0.5em;
+}
+
+#shows div:first-child span.show-title {
+ font-size: 1.2em;
+}