better
All checks were successful
pyrite-dev/taiga/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-03-10 19:47:05 +09:00
commit 9de82041ba
Signed by: nishi
GPG key ID: 27EF69B208EB9343
2 changed files with 8 additions and 4 deletions

View file

@ -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");

View file

@ -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");