diff options
-rw-r--r-- | src/html.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -28,6 +28,9 @@ #include "html.h" static const gchar *styles = + /* + * General styles + */ "* {\n" "margin: 6px;\n" "padding: 0;\n" @@ -42,6 +45,9 @@ static const gchar *styles = "background-color: #AFAFAF;\n" "font-family: sans-serif;\n" "}\n" + /* + * Horizontal notebook + */ "div.notebook-h {\n" "clear: left;\n" "position: relative;\n" @@ -84,6 +90,9 @@ static const gchar *styles = "top: -1px;\n" "margin: 0;\n" "}\n" + /* + * Form elements + */ "form {\n" "margin: 0;\n" "}" |