diff options
author | Kevin Chabowski <kevin@kch42.de> | 2014-05-01 14:24:44 +0200 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2014-05-01 14:33:15 +0200 |
commit | 901d29509eb759426671ca2766c98c657eb46cd6 (patch) | |
tree | a7bc828500a8c66205fc55e21a5ab66860e871bd /template.html | |
parent | 500af457c12a8c11c4b32301f6ab324248c4ccaa (diff) | |
download | startpage-901d29509eb759426671ca2766c98c657eb46cd6.tar.gz startpage-901d29509eb759426671ca2766c98c657eb46cd6.tar.bz2 startpage-901d29509eb759426671ca2766c98c657eb46cd6.zip |
No more flexible columns, 2 columns look best (IMHO).
Also some CSS cleanup
Diffstat (limited to 'template.html')
-rw-r--r-- | template.html | 37 |
1 files changed, 28 insertions, 9 deletions
diff --git a/template.html b/template.html index 288c933..212979f 100644 --- a/template.html +++ b/template.html @@ -17,17 +17,36 @@ color: white; text-decoration: underline; } - * { font-family: "DejaVu Sans Light", sans-serif; } - #earthporninfo { position: fixed; bottom: 2mm; right: 10mm; font-size: 8pt; } - #earthporninfo a { background: black; } - #weather { position: fixed; top: 10mm; left: 10mm; } - #temp { position: absolute; top: 30px; left: 60px; font-size:70px; text-shadow: black 2px 2px; color: white;} + * { + font-family: "DejaVu Sans Light", sans-serif; + color: white; + } + #earthporninfo { + position: fixed; + bottom: 2mm; + right: 10mm; + font-size: 8pt; + background: black; + } + #weather { + position: fixed; + top: 10mm; + left: 10mm; + } + #temp { + position: absolute; + top: 30px; + left: 60px; + font-size:70px; + text-shadow: black 2px 2px; + color: white; + } #links { position: absolute; top: 40%; left: 20%; - columns: {{ .LCols }}; - -moz-columns: {{ .LCols }}; + columns: 2; + -moz-columns: 2; padding: 5mm; background: rgba(0,0,0,0.6); } @@ -55,8 +74,8 @@ {{ end }} </ul> </div> - <div id="earthporninfo"> + <span id="earthporninfo"> <a href="http://reddit.com{{ .Porn.Permalink }}">{{ .Porn.Title }}</a> - </div> + </span> </body> </html>
\ No newline at end of file |