Skip to content

Commit

Permalink
chore: fix h1 p style color
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-logan committed May 26, 2024
1 parent 2a87c79 commit d1aad59
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 17 deletions.
10 changes: 2 additions & 8 deletions docs/src/css/infos.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,19 @@
font-size: 36px;
margin-bottom: 20px;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
color: white;
}
#info-section p {
font-size: 18px;
line-height: 1.6;
margin-block: 25px;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
color: white;
}
#info-section a {
color: #007bff;
text-decoration: none;
}
#info-section a:hover {
text-decoration: underline;
}

h1 {
color: white;
}

p {
color: white;
}/*# sourceMappingURL=infos.css.map */
2 changes: 1 addition & 1 deletion docs/src/css/infos.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 4 additions & 8 deletions docs/src/css/infos.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,16 @@ $footer-bg: #343a40;
h1 {
font-size: 36px;
margin-bottom: 20px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
color: white;
}
// Styling for paragraphs
p {
font-size: 18px;
line-height: 1.6;
margin-block: 25px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: white;
}
// Styling for links
a {
Expand All @@ -34,10 +36,4 @@ $footer-bg: #343a40;
}
}

h1 {
color: white;
}

p {
color: white;
}

0 comments on commit d1aad59

Please sign in to comment.