Advertisement
_Twiistrz

maintenance.html

Nov 28th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.11 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5.     <title>Maintenance - CAIPHC</title>
  6.  
  7.     <!--| Meta |-->
  8.     <meta charset="utf-8" />
  9.     <meta name="viewport" content="width=device-width,initial-scale=1" />
  10.     <meta name="author" content="CAIPHC">
  11.     <meta name="description" content="Kasaysayan: Computer Assisted Instruction in Philippine History and Culture">
  12.  
  13.     <!--| Style |-->
  14.     <link href="https://fonts.googleapis.com/css?family=Raleway:300,400,500,600,700" rel="stylesheet">
  15.     <style>
  16.         html, body {
  17.             height: 100%;
  18.             margin: 0;
  19.             padding: 0;
  20.             font-family: 'Raleway', Helvetica, Arial, sans-serif;
  21.         }
  22.         body {
  23.             background: url('https://images.unsplash.com/photo-1460500063983-994d4c27756c'), #333;
  24.             -webkit-background-size: cover;
  25.             -moz-background-size: cover;
  26.             -o-background-size: cover;
  27.             background-size: cover;
  28.             background-position: 0 0;
  29.             background-blend-mode: multiply;
  30.         }
  31.         h1, p {
  32.             margin: 0;
  33.             padding: 0;
  34.         }
  35.         .hero-container {
  36.             position: relative;
  37.             top: 50%;
  38.             left: 50%;
  39.             transform: translate(-50%, -50%);
  40.             -o-transform: translate(-50%, -50%);
  41.             -moz-transform: translate(-50%, -50%);
  42.             -webkit-transform: translate(-50%, -50%);
  43.             text-align: center;
  44.             max-width: 1180px;
  45.         }
  46.         .hero-container h1 {
  47.             font-size: 40px;
  48.             font-weight: 300;
  49.             color: #fff;
  50.         }
  51.         .hero-footer {
  52.             position: absolute;
  53.             bottom: 0;
  54.             display: block;
  55.             text-align: center;
  56.             color: #777;
  57.             width: 100%;
  58.             padding: 14px 0;
  59.         }
  60.     </style>
  61.  
  62. </head>
  63.  
  64. <body>
  65.     <main class="hero-container">
  66.         <h1>Kasaysayan: "Computer Assisted Instruction in Philippine History and Culture"</h1>
  67.     </main>
  68.     <footer class="hero-footer">
  69.         <p>&copy; 2017 CAIPHC</p>
  70.     </footer>
  71. </body>
  72.  
  73. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement