Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
cpfiffer committed Apr 16, 2024
1 parent 43c4b64 commit 210be72
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 15 deletions.
6 changes: 0 additions & 6 deletions _css/basic.css
Original file line number Diff line number Diff line change
Expand Up @@ -206,12 +206,6 @@ tr,
th,
td {
padding: 10px;
border: 1px solid darkgray;
}

table tbody tr td {
color: #000000;
border: 1px solid darkgray;
}

body {
Expand Down
30 changes: 21 additions & 9 deletions _css/franklin.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
--output-background: hsl(0, 0%, 0%);
--small: 14px;
--normal: 1rem;
--text-color: hsl(0, 0%, 83%);
--text-color: hsl(0, 0%, 100%);
/* --text-color: hsv(100, 0%, 20%); */
}

Expand Down Expand Up @@ -164,15 +164,13 @@ h6 {
}
.franklin-content h1 a:hover {
text-decoration: none;
color: var(--secondary-color);
}
.franklin-content h2 a {
text-decoration: none !important;
color: inherit;
}
.franklin-content h2 a:hover {
text-decoration: none;
color: var(--secondary-color);
}
.franklin-content h3 a {
text-decoration: none !important;
Expand Down Expand Up @@ -206,6 +204,8 @@ h6 {
margin-right: auto;
border-collapse: collapse;
text-align: center;
color: var(--text-color);
background-color: var(--block-background);
}

.franklin-toc ol ol {
Expand Down Expand Up @@ -242,14 +242,19 @@ td {
.franklin-content a {
color: var(--text-color);
text-decoration: underline;
font-weight: bold;
text-decoration-color: var(--secondary-color);
}

.franklin-content a:hover {
border-radius: 5px;
background-color: var(--primary-color);
text-decoration: none;
/* text-decoration-color: var(--primary-color); */
/* background-color: var(--primary-color); */
text-decoration: underline;
text-decoration-thickness: 6px;
text-underline-offset: 0px;
/* text-decoration-style: wavy; */
/* text-underline-position: auto; */
text-decoration-color: var(--primary-color);
text-underline-position: under;
}

/* ==================================================================
Expand All @@ -272,17 +277,24 @@ td {
.franklin-content table.fndef {
margin: 0;
margin-bottom: 10px;
border: none;
}

.franklin-content .fndef tr,
td {
padding: 0;
border: 0;
border: none;
text-align: left;
}

.franklin-content .tbody,
td {
background-color: var(--block-background);
border: none;
}

.franklin-content .fndef tr {
border-left: 2px solid lightgray;
border: none;
}

.franklin-content .fndef td.fndef-backref {
Expand Down

0 comments on commit 210be72

Please sign in to comment.