Skip to content

Commit

Permalink
Improve print formatting
Browse files Browse the repository at this point in the history
Underline links, use grayscale, outline lists,
and turn off as much text shadow as we can.
  • Loading branch information
rpavlik committed Aug 30, 2022
1 parent a50a9fa commit 963a00b
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions nullboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -1307,11 +1307,23 @@

.board .note {
box-shadow: none;
outline: 1px solid #ccc;
text-shadow: none !important;
outline: 1px solid #888;
}
.list {
outline: 1px solid #555;

.board .note.raw {
}
.board .note .raw {
outline: none;
text-shadow: none;
}

.board .head .text a,
.board .note .text a {
color: #333;
text-shadow: none;
text-decoration: underline;
}
}

Expand Down

0 comments on commit 963a00b

Please sign in to comment.