Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Work around the issue of multiple sites using perl.css
- Loading branch information
1 parent
d9fab81
commit 04b3cc6
Showing
1 changed file
with
23 additions
and
0 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| @import 'perl.css'; | ||
| /* We can't include the rules below inside perl.css, because it's used by other sites, | ||
| and we can't specify more than one stylesheet to the podhtml.pl program. So... import | ||
| */ | ||
|
|
||
| html { | ||
| padding-top: 100px; | ||
| } | ||
|
|
||
| html:before { | ||
| content: "Note: these documents may be out of date. For Perl 6 documentation see docs.perl6.org; for specs, see the official test suite."; | ||
| text-align: center; | ||
| background: red; | ||
| color: white; | ||
| width: 100%; | ||
| display: block; | ||
| padding: 20px; | ||
| font-size: 110%; | ||
| position: absolute; | ||
| top: 0; | ||
| left: 0; | ||
| } | ||
|
|