Skip to content

Commit

Permalink
Merge pull request #144 from leomoon/master
Browse files Browse the repository at this point in the history
multiple css fixes #122
  • Loading branch information
leomoon authored Jul 10, 2024
2 parents 4b81779 + 7e60204 commit 2a0b92e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.31
1.0.32
7 changes: 7 additions & 0 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ input:-moz-placeholder{unicode-bidi: plaintext;text-align:start;}
input:-ms-input-placeholder{unicode-bidi: plaintext;text-align:start;}
input::-webkit-input-placeholder{unicode-bidi: plaintext;text-align:start;}

/* fixes long strings making side menu freeze */
h1, h2, h3, h4, p, article ul li, article ol li, td {overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; hyphens: auto;}
/* based on markdown rules, tables should be 100% */
table{width:100%;}
/* font must be defined for international langs to display in monospace */
code, pre {font-family: Consolas, 'Courier New', Courier, monospace;}

/* headers */
h1,h2,h3,h4,h5,h6{color:var(--theme-color);font-weight:300;line-height:110%;}
h1{font-size:3.5rem;margin:1.75rem 0 1.0rem 0;}
Expand Down

0 comments on commit 2a0b92e

Please sign in to comment.