diff options
Diffstat (limited to 'chrome/browser/resources/print_preview/print_preview.css')
-rw-r--r-- | chrome/browser/resources/print_preview/print_preview.css | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/chrome/browser/resources/print_preview/print_preview.css b/chrome/browser/resources/print_preview/print_preview.css index ed5c833..d4f5b4e 100644 --- a/chrome/browser/resources/print_preview/print_preview.css +++ b/chrome/browser/resources/print_preview/print_preview.css @@ -420,3 +420,43 @@ html:not([toolkit=views]) .button-strip { .button-strip button { display: block; } + +#dummy-box { + -webkit-box-align: stretch; + -webkit-box-flex: 1; + -webkit-box-orient: vertical; + background: #ccc; + display: -webkit-box; + height: 100%; + margin: 0; + min-height: 100%; + min-width: 100%; + position: absolute; + width: 100%; +} + +#dummy-page { + -webkit-box-flex: 1; + background: white; + box-shadow: 0 0 8px rgba(0, 0, 0, .4); + height: auto; + margin: 10px; +} + +#dummy-article { + line-height: 1.5; + margin-top: -10px; + position: absolute; + text-align: center; + top: 50%; + width: 100%; +} + +#intentionally-blank { + color: black; + display: inline-block; + font-style: italic; + text-align: center; + text-decoration: none; + padding: 0 10px; +} |