Skip to content

Instantly share code, notes, and snippets.

@ryancsf
Last active September 14, 2019 12:59
Show Gist options
  • Save ryancsf/d3e5cd62a66e59216dfdd21325ced7ec to your computer and use it in GitHub Desktop.
Save ryancsf/d3e5cd62a66e59216dfdd21325ced7ec to your computer and use it in GitHub Desktop.
Just Read Theme
@import url('https://fonts.googleapis.com/css?family=Lora|Source+Sans+Pro:400,700');
body {
font-family: 'Lora', serif;
background-color: #0c1b34;
font-size: 25px;
color: rgb(221, 221, 221);
text-rendering: optimizelegibility;
line-height: 1.5em;
}
@media print {
body {
color: rgb(51, 51, 51);
}
}
h1,
h2 {
font-family: 'Source Sans Pro', sans-serif;
font-weight: 700;
}
h1 {
font-size: 1.875em;
line-height: 1.125;
}
h2 {
font-size: 1.45em;
line-height: 1.2625em;
}
h3 {
font-family: 'Source Sans Pro', serif;
font-size: 1.25em;
line-height: 1.5;
}
hr {
height: 1px;
background-color: inherit;
border: none;
width: 100%;
margin: 0;
}
a[href] {
color: rgb(237, 100, 43);
}
a[href]:hover {
color: rgb(182, 79, 37);
}
.simple-container {
margin: 50px auto;
background-color: #15232d;
-webkit-print-color-adjust: exact;
max-width: 1200px;
border: 1px solid rgba(50, 54, 72, 0.5);;
border-radius: 8px;
padding: 50px;
}
.simple-control,
.simple-control *,
.simple-edit * {
fill: rgb(209, 209, 209);
color: rgb(209, 209, 209);
border-color: rgb(209, 209, 209);
}
.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: rgb(224, 224, 224);
color: rgb(31, 31, 31);
padding: 10px;
overflow: auto;
}
blockquote {
border-left: 4px solid;
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 rgb(238, 238, 238);
padding: 17px 17px 12px;
}
table {
background: rgb(0, 75, 122);
margin: 10px auto;
border: none;
box-shadow: rgba(0, 0, 0, 0.75) 1px 1px 1px;
border-spacing: 0;
font: inherit;
text-align: center;
}
table tr td,
table tr th,
table thead th {
margin: 3px;
padding: 5px;
color: rgb(204, 204, 204);
border: 1px solid rgba(255, 255, 255, 0.25);
background: rgba(0, 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 rgb(216, 216, 216);
}
.rtl .simple-date {
border-left: 1px solid rgb(216, 216, 216);
border-right: none;
padding-right: 0;
padding-left: 15px;
}
.simple-author {
display: inline-block;
font-size: 18px;
color: rgb(237, 100, 43);
line-height: 22px;
padding-left: 10px;
padding-top: 10px;
padding-bottom: 10px;
}
.rtl .simple-author {
padding-left: 0;
padding-right: 10px;
}
.simple-bug-reporter a[href] {
color: rgb(233, 233, 233);
}
.simple-bug-reporter a[href]:hover {
color: rgb(255, 255, 255);
}
[class*="emoji"],
[class*="icon"] {
width: 1em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment