3-line CSS to make Hacker News narrow for Safari's custom style sheet
1 comments
Better yet:
table#hnmain {
padding: 0 -webkit-calc(42.5% - 23em);
}
table#hnmain > tbody > tr:not(:first-child) > td {
padding: 0 7.5em;
}Another iteration:
table#hnmain {
padding: 0 -webkit-calc(42.5% - 25em);
}
table#hnmain > tbody > tr:not(:first-child) > td > table {
padding: 0 7.5em;
}
table#hnmain div.comment {
word-break: break-word;
}
Preferences > Advanced > Style sheet