diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-10-01 04:27:28 (EDT) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-10-01 04:27:28 (EDT) |
commit | ea5f5c72cf7f081e6c55df453a8c232fb20fca9d (patch) | |
tree | 48de47e2bbab7cff2b81625681679ff9f5ebef49 /src | |
parent | 533359959e368cace23d74f5bbf1414156aeb95b (diff) | |
download | marquee-ea5f5c72cf7f081e6c55df453a8c232fb20fca9d.zip marquee-ea5f5c72cf7f081e6c55df453a8c232fb20fca9d.tar.gz marquee-ea5f5c72cf7f081e6c55df453a8c232fb20fca9d.tar.bz2 |
src/html.c: Eliminate <html> and <form> margins
Diffstat (limited to 'src')
-rw-r--r-- | src/html.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -34,6 +34,9 @@ static const gchar *styles = "background: none;\n" "border: 0 none;\n" "}\n" + "html {\n" + "margin: 0;\n" + "}" "body {\n" "background-color: #AFAFAF;\n" "font-family: sans-serif;\n" @@ -80,6 +83,9 @@ static const gchar *styles = "top: -1px;\n" "margin: 0;\n" "}\n" + "form {\n" + "margin: 0;\n" + "}" "form input, form select {\n" "border: 1px solid #9F9F9F;\n" "border-radius: 3px;\n" |