This commit is contained in:
parent
ae487f648e
commit
9de82041ba
2 changed files with 8 additions and 4 deletions
|
|
@ -25,6 +25,10 @@ void classic_stylesheet(FILE* out, const char* top) {
|
|||
fprintf(out, " font-family: Verdana, Helvetica, Arial, sans-serif;\n");
|
||||
fprintf(out, "}\n");
|
||||
fprintf(out, "\n");
|
||||
fprintf(out, "p {\n");
|
||||
fprintf(out, " margin: 0;\n");
|
||||
fprintf(out, "}\n");
|
||||
fprintf(out, "\n");
|
||||
fprintf(out, "#breadcrumb {\n");
|
||||
fprintf(out, " background-color: %s;\n", breadcrumb_bgcolor);
|
||||
fprintf(out, " font-weight: bold;\n");
|
||||
|
|
@ -64,10 +68,6 @@ void classic_stylesheet(FILE* out, const char* top) {
|
|||
fprintf(out, " color: #000088;\n");
|
||||
fprintf(out, "}\n");
|
||||
fprintf(out, "\n");
|
||||
fprintf(out, "p {\n");
|
||||
fprintf(out, " margin: 0;\n");
|
||||
fprintf(out, "}\n");
|
||||
fprintf(out, "\n");
|
||||
fprintf(out, "a {\n");
|
||||
fprintf(out, " text-decoration: none;\n");
|
||||
fprintf(out, "}\n");
|
||||
|
|
|
|||
|
|
@ -17,6 +17,10 @@ void simple_stylesheet(FILE* out, const char* top) {
|
|||
fprintf(out, " font-size: 16px;\n");
|
||||
fprintf(out, "}\n");
|
||||
fprintf(out, "\n");
|
||||
fprintf(out, "p {\n");
|
||||
fprintf(out, " margin: 0;\n");
|
||||
fprintf(out, "}\n");
|
||||
fprintf(out, "\n");
|
||||
fprintf(out, "a:link {\n");
|
||||
fprintf(out, " color: #0000ee;\n");
|
||||
fprintf(out, "}\n");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue