forked from WordPress/twentynineteen
-
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.
Merge branch 'master' of https://github.com/WordPress/twentynineteen …
…into media_element_audio * 'master' of https://github.com/WordPress/twentynineteen: (37 commits) Minor formatting fix, hide navigation menus Add @nielslange to contributors.md Replicate Gutenberg link hover behavior Add underline to links within comments. Use theme version as print style version number Adding styling for the comment form label(s) Replace border-bottom with text-decoration Add @audrasjb to CONTRIBUTORS.md Remove `twentynineteen_get_estimated_reading_time` following WordPress#168. Replace site title h1 tag with p when not on homepage. Adding compiled CSS from WordPress#106 Fixes a fatal error that mysteriously slipped by Travis checks Add @khleomix to contributors.md remove rule for wp-config-sample and txt files Clear whitespace. Again. Fix formatting, make Travis happy Underline links within content Recompile SASS Add pullquote <em> font-style to style-editor CSS rules removed min-height entirely ...
- Loading branch information
Showing
22 changed files
with
480 additions
and
157 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,6 @@ Version 1.0: | |
@aaronjorbin | ||
@netweb | ||
@b-07 | ||
@khleomix | ||
@audrasjb | ||
@nielslange |
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 |
---|---|---|
@@ -0,0 +1,105 @@ | ||
@charset "UTF-8"; | ||
/* | ||
Theme Name: Twenty Nineteen | ||
Adding print support. The print styles are based on the the great work of | ||
Andreas Hecht in https://www.jotform.com/blog/css-perfect-print-stylesheet-98272/. | ||
*/ | ||
/*-------------------------------------------------------------- | ||
>>> TABLE OF CONTENTS: | ||
---------------------------------------------------------------- | ||
# Margins | ||
# Typography÷ | ||
# Page breaks | ||
# Links | ||
# Visibility | ||
--------------------------------------------------------------*/ | ||
@media print { | ||
/* Margins */ | ||
@page { | ||
margin: 2cm; | ||
} | ||
.hentry .entry-header, .site-footer .site-info { | ||
margin: 0; | ||
} | ||
/* Fonts */ | ||
body { | ||
font: 13pt Georgia, "Times New Roman", Times, serif; | ||
line-height: 1.3; | ||
background: #fff !important; | ||
color: #000; | ||
} | ||
h1 { | ||
font-size: 24pt; | ||
} | ||
h2, | ||
h3, | ||
h4, | ||
.has-regular-font-size, | ||
.has-large-font-size, | ||
h2.author-title, | ||
p.author-bio, | ||
.comments-title, h3 { | ||
font-size: 14pt; | ||
margin-top: 25px; | ||
} | ||
/* Page breaks */ | ||
a { | ||
page-break-inside: avoid; | ||
} | ||
blockquote { | ||
page-break-inside: avoid; | ||
} | ||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6 { | ||
page-break-after: avoid; | ||
page-break-inside: avoid; | ||
} | ||
img { | ||
page-break-inside: avoid; | ||
page-break-after: avoid; | ||
} | ||
table, pre { | ||
page-break-inside: avoid; | ||
} | ||
ul, ol, dl { | ||
page-break-before: avoid; | ||
} | ||
/* Links */ | ||
a:link, a:visited, a { | ||
background: transparent; | ||
color: #520; | ||
font-weight: bold; | ||
text-decoration: underline; | ||
text-align: left; | ||
} | ||
a { | ||
page-break-inside: avoid; | ||
} | ||
a[href^=http]:after { | ||
content: " < " attr(href) "> "; | ||
} | ||
a:after > img { | ||
content: ""; | ||
} | ||
article a[href^="#"]:after { | ||
content: ""; | ||
} | ||
a:not(:local-link):after { | ||
content: " < " attr(href) "> "; | ||
} | ||
/* Visibility */ | ||
.main-navigation, | ||
.social-navigation, | ||
.site-branding-container:before, | ||
.hentry .entry-title:before, | ||
.entry-meta, .entry-footer, | ||
.author-description:before, | ||
.post-navigation { | ||
display: none; | ||
} | ||
} |
Oops, something went wrong.