Skip to content

Commit

Permalink
Formatted with Prettier
Browse files Browse the repository at this point in the history
BREAKING CHANGE: The next release will require Node 8
  • Loading branch information
coliff authored and tmcw committed Jul 10, 2019
1 parent 2b035fd commit 8f36e75
Showing 1 changed file with 20 additions and 13 deletions.
33 changes: 20 additions & 13 deletions src/default_theme/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ h4 {
}

a {
color: #1184CE;
color: #1184ce;
text-decoration: none;
}

Expand All @@ -51,12 +51,12 @@ a:hover {
}

section:target h3 {
font-weight:700;
font-weight: 700;
}

.documentation td,
.documentation th {
padding: .25rem .25rem;
padding: 0.25rem 0.25rem;
}

h1:hover .anchorjs-link,
Expand All @@ -82,13 +82,16 @@ h4:hover .anchorjs-link {
}
}

.pre, pre, code, .code {
font-family: Source Code Pro,Menlo,Consolas,Liberation Mono,monospace;
.pre,
pre,
code,
.code {
font-family: Source Code Pro, Menlo, Consolas, Liberation Mono, monospace;
font-size: 14px;
}

.fill-light {
background: #F9F9F9;
background: #f9f9f9;
}

.width2 {
Expand All @@ -100,10 +103,10 @@ h4:hover .anchorjs-link {
display: block;
width: 100%;
height: 2rem;
padding: .5rem;
padding: 0.5rem;
margin-bottom: 1rem;
border: 1px solid #ccc;
font-size: .875rem;
font-size: 0.875rem;
border-radius: 3px;
box-sizing: border-box;
}
Expand All @@ -115,15 +118,19 @@ table {
.prose table th,
.prose table td {
text-align: left;
padding:8px;
border:1px solid #ddd;
padding: 8px;
border: 1px solid #ddd;
}

.prose table th:nth-child(1) { border-right: none; }
.prose table th:nth-child(2) { border-left: none; }
.prose table th:nth-child(1) {
border-right: none;
}
.prose table th:nth-child(2) {
border-left: none;
}

.prose table {
border:1px solid #ddd;
border: 1px solid #ddd;
}

.prose-big {
Expand Down

0 comments on commit 8f36e75

Please sign in to comment.