github.com/henvic/wedeploycli@v1.7.6-0.20200319005353-3630f582f284/functional/tests/fixtures/projectA/index.html (about) 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta content="minimum-scale=1.0, width=device-width" name="viewport"> 6 <title>It works!</title> 7 <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,700"> 8 <style> 9 body { 10 background: #0e141a; 11 font-family: 'Open Sans', sans-serif; 12 } 13 .container { 14 position: absolute; 15 top: 50%; 16 left: 50%; 17 transform: translate(-50%, -50%); 18 text-align: center; 19 width: 90%; 20 } 21 h1 { 22 font-size: 40px; 23 font-weight: 700; 24 color: #00d46a; 25 margin: 0; 26 } 27 h2 { 28 font-weight: 300; 29 color: rgba(255, 255, 255, 0.9); 30 margin: 0; 31 font-size: 16px; 32 } 33 .logo { 34 position: absolute; 35 bottom: 20px; 36 left: 50%; 37 transform: translate(-50%, -50%); 38 } 39 40 @media screen and (min-width: 680px) { 41 h1 { 42 font-size: 72px; 43 } 44 h2 { 45 font-size: 24px; 46 } 47 } 48 } 49 </style> 50 </head> 51 <body> 52 <div class="container"> 53 <h1>It works!</h1> 54 <h2>Now you are ready to go.</h2> 55 </div> 56 57 <img class="logo" src="https://cloud.githubusercontent.com/assets/398893/16279177/af9b3622-386e-11e6-920e-3a3f33169831.png" width="150" alt="WeDeploy"> 58 </body> 59 </html>