From af3de034d582d53cb5099e73643028f8e4c6949a Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sun, 01 Oct 2017 23:06:51 -0400 Subject: src/html.c: Add C comments in CSS string --- diff --git a/src/html.c b/src/html.c index 96d3999..e8b8603 100644 --- a/src/html.c +++ b/src/html.c @@ -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" "}" -- cgit v0.9.1