Advertisement
Guest User

Untitled

a guest
Oct 17th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.28 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <title>HTTPS</title>
  7.     <link rel="stylesheet" href="">
  8.     <style type="text/css" media="screen">
  9.         .valign-wrapper {
  10.             align-items: center;
  11.             display: flex;
  12.         }
  13.         .valign-wrapper .valign {
  14.             display: block;
  15.         }
  16.          .tomato{
  17.             border: 1px solid tomato;
  18.         }
  19.         .test{
  20.             height: 100%;
  21.             height:100vh;
  22.         }
  23.         body{
  24.             margin: 0px;
  25.         }
  26.         .center {
  27.             text-align: center;
  28.             vertical-align: middle;
  29.         }
  30.         .center, .center-align {
  31.             text-align: center;
  32.         }
  33.  
  34.         .cien{
  35.             width: 100%;
  36.         }
  37.  
  38.         img.ri
  39.         {
  40.             position: absolute;
  41.             max-width: 80%;
  42.             top: 10%;
  43.             left: 10%;
  44.         }
  45.  
  46.         img.ri:empty
  47.         {
  48.             top: 50%;
  49.             left: 50%;
  50.             -webkit-transform: translate(-50%, -50%);
  51.             -moz-transform: translate(-50%, -50%);
  52.             -ms-transform: translate(-50%, -50%);
  53.             -o-transform: translate(-50%, -50%);
  54.             transform: translate(-50%, -50%);
  55.         }
  56.  
  57.         @media screen and (orientation: portrait) {
  58.           img.ri {
  59.               max-width: 90%;
  60.           }
  61.         }
  62.  
  63.         @media screen and (orientation: landscape) {
  64.           img.ri {
  65.               max-height: 90%;
  66.           }
  67.         }      
  68.     </style>
  69. </head>
  70. <body>
  71.     <img src="assets/img/https.png" alt="" class="ri">
  72. </body>
  73. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement