-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: h1,h2 check and code tag adjustment
- Loading branch information
Showing
10 changed files
with
70 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,10 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@700&display=swap'); | ||
|
||
|
||
.wmde-markdown { | ||
@import url('https://fonts.googleapis.com/css2?family=Manrope:[email protected]&display=swap'); | ||
.wmde-markdown.wmde-markdown-color { | ||
background-color: transparent; | ||
font-family: "Manrope", sans-serif; | ||
font-family: "Manrope", sans-serif ; | ||
} | ||
|
||
.wmde-markdown h1, | ||
h2, | ||
h3 { | ||
.wmde-markdown h1, .wmde-markdown h2 { | ||
padding-left: 10px; | ||
scroll-margin-top: 100px; | ||
border-left: 8px solid #F7931A; | ||
|
@@ -21,12 +17,27 @@ h3 { | |
|
||
} | ||
|
||
.wmde-markdown h3, .wmde-markdown h4, .wmde-markdown h5, .wmde-markdown h6 { | ||
color: #000; | ||
font-size: 1rem | ||
} | ||
|
||
span.code-line { | ||
white-space: pre-wrap; | ||
} | ||
.wmde-markdown pre code, .wmde-markdown pre tt{ | ||
max-width: 100%; | ||
} | ||
.wmde-markdown pre > code { | ||
max-width: 100%; | ||
} | ||
|
||
.wmde-markdown p { | ||
|
||
margin-bottom: 8px; | ||
color: #000; | ||
font-size: 0.875rem; | ||
font-weight: 500; | ||
font-weight: 400; | ||
line-height: 2.1875rem; | ||
} | ||
|
||
|
@@ -36,9 +47,7 @@ h3 { | |
|
||
@media (min-width: 1024px) { | ||
|
||
.wmde-markdown h1, | ||
h2, | ||
h3 { | ||
.wmde-markdown h1, .wmde-markdown h2 { | ||
/* margin: 0px !important; */ | ||
scroll-margin-top: 100px; | ||
color: #000; | ||
|
@@ -48,8 +57,9 @@ h3 { | |
font-size: 1.2rem; | ||
} | ||
|
||
.wmde-markdown h4,h5,h6{ | ||
color: black; | ||
.wmde-markdown h3, .wmde-markdown h4, .wmde-markdown h5, .wmde-markdown h6 { | ||
color: #000; | ||
font-size: 1rem; | ||
} | ||
|
||
.wmde-markdown p { | ||
|
@@ -59,14 +69,14 @@ h3 { | |
font-size: 1rem; | ||
line-height: 2.1875rem; | ||
} | ||
.wmde-markdown ul,ol { | ||
.wmde-markdown ul,.wmde-markdown ol { | ||
margin: 0px !important; | ||
color: #000; | ||
font-weight: 400; | ||
font-size: 1rem; | ||
line-height: 2.1875rem; | ||
} | ||
.wmde-markdown ul, li { | ||
.wmde-markdown ul, .wmde-markdown li { | ||
list-style-type: circle; | ||
} | ||
|
||
|
@@ -77,13 +87,16 @@ h3 { | |
|
||
@media (min-width: 1536px) { | ||
|
||
.wmde-markdown h1, | ||
h2, | ||
h3 { | ||
.wmde-markdown h1, .wmde-markdown h2 { | ||
margin: 12px 0px !important; | ||
font-size: 1.75rem; | ||
} | ||
|
||
.wmde-markdown h3,.wmde-markdown h4, .wmde-markdown h5, .wmde-markdown h6 { | ||
color: #000; | ||
font-size: 1rem; | ||
} | ||
|
||
.wmde-markdown p { | ||
margin: 0px !important; | ||
color: #000; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters