Skip to content

Commit

Permalink
fix(#57): horizontal rule style
Browse files Browse the repository at this point in the history
  • Loading branch information
tuurep committed Jan 3, 2024
1 parent a257465 commit e8201c4
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,15 @@ li.dir-list-file:before { content: '📄' }
* IMAGES ------------------------------------------------------------------- */
img, svg { max-width: 100%; }

/* --------------------------------------------------------------------------
* HORIZONTAL RULE ---------------------------------------------------------- */
hr {
height: .25em;
margin: 24px 0;
background-color: #353535;
border: 0;
}

/* --------------------------------------------------------------------------
* LIGHT MODE --------------------------------------------------------------- */
@media (prefers-color-scheme: light) {
Expand Down Expand Up @@ -154,4 +163,8 @@ img, svg { max-width: 100%; }
tr:nth-child(even) {
background-color: #f6f8fa;
}

hr {
background-color: #d0d7de;
}
}

0 comments on commit e8201c4

Please sign in to comment.