This repository has been archived by the owner on May 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(PostDetails): View the content of posts
View Steem content, still need to do actions. Had trouble with turning image URLs into img tags.
- Loading branch information
Showing
28 changed files
with
1,205 additions
and
273 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,114 @@ | ||
@import '../../variables.css'; | ||
|
||
.PostContent { | ||
font-size: 1.3rem; | ||
line-height: 2.0rem; | ||
font-family: "Georgia"; | ||
} | ||
|
||
.PostContent .info { | ||
font-family: "Open Sans"; | ||
font-size: 1.1rem; | ||
} | ||
|
||
h1, h2, h3, h4, h5, h6 { | ||
/*font-family: var(--font-content);*/ | ||
font-weight: 600; | ||
} | ||
|
||
h1 { | ||
margin: 2.5rem 0 .3rem; | ||
font-size: 2.5rem; | ||
} | ||
h2 { | ||
margin: 2.5rem 0 .3rem; | ||
font-size: 2.2rem; | ||
} | ||
h3 { | ||
margin: 2rem 0 0.3rem; | ||
font-size: 2.0rem; | ||
} | ||
h4 { | ||
margin: 1.5rem 0 0.2rem; | ||
font-size: 1.8rem; | ||
} | ||
h5 { | ||
margin: 1rem 0 0.2rem; | ||
font-size: 1.6rem; | ||
} | ||
h6 { | ||
margin: 1rem 0 0.2rem; | ||
font-size: 1.4rem; | ||
} | ||
|
||
code { | ||
padding: 0.2rem; | ||
font-size: 85%; | ||
border-radius: 3px; | ||
border: none; | ||
background-color: #F4F4F4; | ||
font-weight: inherit; | ||
overflow: scroll; | ||
} | ||
|
||
pre > code { | ||
display: block; | ||
} | ||
|
||
strong { | ||
font-weight: 600; | ||
} | ||
|
||
ol, ul { | ||
margin-left: 2rem; | ||
} | ||
|
||
table td { | ||
word-break: normal; | ||
} | ||
|
||
p { | ||
font-size: 100%; | ||
line-height: 150%; | ||
margin: 0 0 1.5rem 0; | ||
} | ||
|
||
img { | ||
width: auto; | ||
max-width: 100%; | ||
height: auto; | ||
max-height: none; | ||
} | ||
|
||
iframe { | ||
max-width: 100%; | ||
max-height: 75vw; | ||
} | ||
|
||
div.pull-right { | ||
float: right; | ||
padding-left: 1rem; | ||
max-width: 50%; | ||
} | ||
|
||
div.pull-left { | ||
float: left; | ||
padding-right: 1rem; | ||
max-width: 50%; | ||
} | ||
|
||
div.text-justify { | ||
text-align: justify; | ||
} | ||
|
||
div.text-right { | ||
text-align: right; | ||
} | ||
|
||
div.text-center { | ||
text-align: center; | ||
} | ||
|
||
div.text-rtl { | ||
direction: rtl; | ||
} |
Oops, something went wrong.