App-PFT

 view release on metacpan or  search on metacpan

share/templates/default.html  view on Meta::CPAN

<html>
<head>
  <meta http-equiv="content-type" content="text/html; charset=[% site.encoding %]">
  <title>[% site.title %] :: [% content.title %]</title>

    <style type="text/css">

        html {
            margin : 0;
            padding : 0;
            font-family : sans-serif;
        }

        body {
            margin : 0 auto 0;
            padding : 5em 5em 0;
            min-width : 40em;
            max-width : 50em;
            font-size : 10pt;
            line-height : 1.3em;
        }

        h1,h2,h3,h4,h5,h6 {
            line-height : 1em;
        }

        div#title {
            text-align : center;
        }

share/templates/default.html  view on Meta::CPAN

        .side {
            float : right;
        }

        div#sitemap {
            margin-top : 3em;
            width : 30%;
        }

        div#sitemap h1 {
            font-size : 1em;
        }

        div#sitemap h2 {
            font-size : 1em;
            font-style : italic;
        }

        h1#sitetitle {
            margin-bottom : 1em;
            border-bottom : 1px solid cornflowerblue;
            text-align : right;
            clear : both;
        }

        div#pagetitle {
            margin : 2em 0 2em;
        }

        div#pagetitle h2 {
            font-size : 1em;
        }

        div#pagetitle h3 {
            font-size : 1em;
            display : inline;
            font-style : italic;
        }

        div#navigation ul {
            list-style-type : none;
        }

        div#navigation li h3 {
            display : inline;
        }

        div#content {
            font-family : serif;
            width : 65%;
        }

        div#content #title h1 {
            font-size : 2em;
        }

        div#content #text pre {
            overflow : auto;
            background : #eaeaea;
            padding : .5em;
        }

        div#content code {
            background : #eaeaea;
        }

        div#content p img {
            max-width : 100%;
        }

        div#content h1,h2,h3,h4,h5,h6 { font-family : sans; }
        div#content h1 { font-size : 1.7em; }
        div#content h2 { font-size : 1.5em; }
        div#content h3 { font-size : 1.4em; }
        div#content h4 { font-size : 1.3em; }
        div#content h5 { font-size : 1.2em; }
        div#content h6 { font-size : 1.1em; }

        div#footer {
            color : silver;
            clear : right;
            margin-right : 0;
            margin-left : auto;
            font-size : .8em;
            text-align : left;
        }

    </style>
</head>

<body id="top">

<h1 id="sitetitle">[% site.title %]</h1>

share/templates/minimal.html  view on Meta::CPAN

                    color.fg = '#252525'
                    color.h = '#616161'
                    color.prebg = '#e7e7e7'
                END
            %]

            body {
                margin: 0 auto 0;
                background-color : [% color.bg %];
                color : [% color.fg %];
                font-family : serif;
                max-width : 50em;
                padding : 1em;
            }

            div#header {
                padding-top : 8em;
            }

            h1,h2,h3,h4,h5 {
                font-family : sans-serif;
                color : [% color.h %];
            }

            div#all_pages h3 {
                display : inline;
            }

            div#header h1 {
                font-family : sans-serif;
                font-size : 3.2em;
                padding-bottom : 0.5em;
                border-bottom : 1px solid cornflowerblue;
                text-align : right;
                width : 100%;
            }

            div#content {
                min-height : 10em;
                padding-bottom : 1em;
                border-bottom : 1px solid cornflowerblue;
            }

            div#content div#info h4  {
                display : inline;
                font-style : italic;
                font-family : serif;
            }

            div.nav {
                float : right;
                padding-top: 0;
                padding-right : 0;
                padding-left : 2em;
                overflow-wrap: break-word;
                width : 35%;
            }

share/templates/minimal.html  view on Meta::CPAN

            }

            div#content div#text pre {
                overflow : auto;
                background-color : [% color.prebg %];
                padding : 1em;
                border-left : 0.4em solid cornflowerblue;
            }

            div#content div#text blockquote {
                font-style : italic;
                text-color : green;
                font-family : serif;
            }

            div#content div#text {
                margin-bottom : 2em;
            }

            div#content div#text img {
                max-width : 100%;
            }

share/templates/terminal.html  view on Meta::CPAN

                    color.link      = "#FF6978"
                    color.link_hov  = "#FF4557"
                END
            %]

            body {
                margin              : 0 auto 0;
                max-width           : 50em;
                background-color    : [% color.bg %];
                color               : [% color.fg %];
                font-family         : monospace;
            }

            div#header h1 {
                width               : 100%;
                font-family         : sans;
                text-align          : center;
            }

            div#info {
                width               : 100%;
            }

            div#info h1 {
                font-family         : sans;
            }

            div#info h5 {
                text-align          : right;
            }

            div#text img {
                max-width           : 100%;
            }

share/templates/terminal.html  view on Meta::CPAN


            a:visited {
                color               : [% color.link %];
            }

            table {
                width               : 100%;
            }

            table tr:first-child {
                font-weight         : bold;
                text-indent         : 1em;
            }

            table tr:nth-child(even) {
                background-color    : [% color.bg_alt %];
            }

            div#text blockquote {
                margin-left         : 2em;
                font-style          : italic;
                border-left         : 1em [% color.border %];
            }

            div#text pre {
                background-color    : [% color.bg_alt %];
                padding             : 0.5em;
                font-family         : monospace;
                border              : 1px solid [% color.border %];
                border-radius       : 3px;
            }

            div#text pre code {
                border              : 0px;
            }

            code {
                background-color    : [% color.bg_alt %];
                border              : 1px solid [% color.border %];
                font-family         : monospace;
                border-radius       : 3px;
            }
        </style>
    </head>

    <body>
        <div id="header">
            <h1>[% site.title %]</h1>
        </div>
        <div id="all_pages">



( run in 0.693 second using v1.01-cache-2.11-cpan-ceb78f64989 )