PHP Classes

File: pages/model.php

Recommend this page to a friend!
  Classes of Rémy Sanchez   uncentralizedDownloader   pages/model.php   Download  
File: pages/model.php
Role: Application script
Content type: text/plain
Description: The global template
Class: uncentralizedDownloader
Manage downloading of files from multiple servers
Author: By
Last change:
Date: 16 years ago
Size: 1,076 bytes
 

Contents

Class file image Download
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
    <head>
        <title><?=$pageTitle?></title>

        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

        <style>
            body {
                background-color: #F6F3E2;
                color: #7F714A;

                font-family: sans-serif;
                font-size: 24px;

                height: 100%;
                width: 100%;

                margin: 0;
                padding: 0;
                overflow: hidden;

                display: table;
                #position: relative;
            }

            html {
                height: 100%;
                margin: 0;
                padding: 0;
            }

            a {
                color: #7F714A;
                font-weight: bold;
                text-decoration: none;
            }
            a:hover {
                text-decoration: underline;
            }

            #center1 {
                #position: absolute;
                #top: 50%;

                display: table-cell;
                vertical-align: middle;

                text-align: center;
                width: 100%;
            }

            #center2 {
                #position: relative;
                #top: -50%;

                text-align: center;

                width: 100%;
            }
        </style>
    </head>

    <body>

        <div id="center1"><div id="center2">
            <?=$pageMessage?>
</div></div>
    </body>
</html>