3-line CSS to make Hacker News narrow for Safari's custom style sheet

1 points by jhrmnn ↗ HN

  table#hnmain {
      padding: 0 -webkit-calc(42.5% - 21em);
  }
Preferences > Advanced > Style sheet

2 comments

[ 3.1 ms ] story [ 18.7 ms ] thread
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;
  }