diff options
Diffstat (limited to 'www/styles')
-rw-r--r-- | www/styles/todo.css | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/www/styles/todo.css b/www/styles/todo.css new file mode 100644 index 0000000..f31acee --- /dev/null +++ b/www/styles/todo.css @@ -0,0 +1,69 @@ +/* + * rhrdweb + * + * Copyright (C) 2016 Christian Pointner <equinox@helsinki.at> + * + * This file is part of rhrdweb. + * + * rhrdweb is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * rhrdweb is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with rhrdweb. If not, see <http://www.gnu.org/licenses/>. + */ + +body { + font-family: "Droid Sans", Helvetica, Arial, Sans; + margin: 0; + padding: 0; + font-size: 30px; +} + + +#header { + background-color: #36373B; + width: 100%; + color: white; +} + +#header div.date { + font-size: 1.2em; + font-weight: bold; + padding: 0.3em 1em 0.2em 5em; +} + + +#shows div.show { + padding: 0.05em 0; +} + +#shows div:nth-child(odd) { + background-color: white; +} + +#shows div:nth-child(even) { + background-color: #E0E0E0; +} + +div.show span { + font-weight: bold; +} + +div.show span.show-start { + font-size: 0.75em; + margin-left: 5em; + margin-right: 1em; +} + +div.show span.show-len { + font-size: 0.75em; + margin-left: 0.2em; + margin-right: 1em; +}
\ No newline at end of file |