forked from ZachSaucier/Just-Read
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
577294a
commit 07d3a38
Showing
6 changed files
with
291 additions
and
56 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,184 @@ | ||
@import url('https://fonts.googleapis.com/css?family=Roboto'); | ||
|
||
body { | ||
font-family: 'Roboto', BlinkMacSystemFont, sans-serif; | ||
background-color: #222233; | ||
line-height: 1.6; | ||
font-size: 17px; | ||
color: #D1D1D1; | ||
text-rendering: optimizeLegibility; | ||
} | ||
|
||
@media print { | ||
body { color: #333; } | ||
} | ||
|
||
h1, | ||
h2 { | ||
font-weight: 700; | ||
} | ||
|
||
h1 { | ||
font-size: 1.875em; | ||
line-height: 1.125; | ||
} | ||
|
||
h2 { | ||
font-size: 1.45em; | ||
line-height: 1.2625em; | ||
} | ||
|
||
h3 { | ||
font-size: 1.25em; | ||
line-height: 1.5; | ||
} | ||
|
||
hr { | ||
height: 1px; | ||
background-color: inherit; | ||
border: none; | ||
width: 100%; | ||
margin: 0px; | ||
} | ||
|
||
a[href] { | ||
color: #64BEFA; | ||
} | ||
|
||
a[href]:hover { | ||
color: #2089d0; | ||
} | ||
|
||
.simple-container { | ||
-webkit-print-color-adjust: exact; | ||
max-width: 600px; | ||
} | ||
|
||
.simple-control, | ||
.simple-control *, | ||
.simple-edit * { | ||
fill: #D1D1D1; | ||
color: #D1D1D1; | ||
border-color: #D1D1D1; | ||
} | ||
|
||
.youtubeContainer { | ||
position: relative; | ||
width: 100%; | ||
height: 0; | ||
padding-bottom: 56.25%; | ||
padding-top: 25px; | ||
} | ||
iframe[src *= "youtube.com/embed/"] { | ||
width: 100%; | ||
height: 100%; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
} | ||
|
||
img { | ||
max-width: 100%; | ||
} | ||
|
||
li { | ||
line-height: 1.5em; | ||
} | ||
|
||
td { | ||
border: 1px solid black; | ||
padding: 3px 7px; | ||
} | ||
|
||
pre { | ||
background-color: #E0E0E0; | ||
padding: 10px; | ||
overflow: auto; | ||
} | ||
|
||
blockquote { | ||
border-left: 4px solid; | ||
margin-left: 0; | ||
padding: 15px 10% 15px 8%; | ||
margin: 1em 0; | ||
font-size: 1.2em; | ||
line-height: 1.4; | ||
} | ||
blockquote > *:first-child { | ||
margin-top: 0; | ||
} | ||
blockquote > *:last-child { | ||
margin-bottom: 0; | ||
} | ||
|
||
figure { | ||
margin: 0 0 10px; | ||
} | ||
figcaption { | ||
font-size: 0.9em; | ||
opacity: 0.7; | ||
border: 1px solid #eee; | ||
padding: 17px 17px 12px; | ||
} | ||
|
||
table { | ||
background: #004b7a; | ||
margin: 10px auto; | ||
border: none; | ||
box-shadow: 1px 1px 1px rgba(0, 0, 0, .75); | ||
border-spacing: 0; | ||
font: inherit; | ||
text-align: center; | ||
} | ||
table tr td, | ||
table tr th, | ||
table thead th { | ||
margin: 3px; | ||
padding: 5px; | ||
color: #ccc; | ||
border: 1px solid rgba(255, 255, 255, .25); | ||
background: rgba(0, 0, 0, .1); | ||
} | ||
|
||
aside, | ||
[class *= "sidebar"], | ||
[id *= "sidebar"] { | ||
max-width: 90%; | ||
margin: 0 auto; | ||
border: 1px solid lightgrey; | ||
padding: 5px 15px; | ||
} | ||
|
||
.simple-date { | ||
display: inline-block; | ||
font-size: 18px; | ||
padding-right: 15px; | ||
padding-top: 10px; | ||
padding-bottom: 10px; | ||
border-right: 1px solid #d8d8d8; | ||
} | ||
.rtl .simple-date { | ||
border-left: 1px solid #d8d8d8; | ||
border-right: none; | ||
padding-right: 0; | ||
padding-left: 15px; | ||
} | ||
|
||
.simple-author { | ||
display: inline-block; | ||
font-size: 18px; | ||
color: #27AAE1; | ||
line-height: 22px; | ||
padding-left: 10px; | ||
padding-top: 10px; | ||
padding-bottom: 10px; | ||
} | ||
.rtl .simple-author { | ||
padding-left: 0; | ||
padding-right: 10px; | ||
} | ||
|
||
|
||
/* Make emojis and icons a reasonable size */ | ||
[class *= "emoji"], | ||
[class *= "icon"] { width: 1em; } |
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