Advertisement
alexkurumin

Untitled

May 4th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.57 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pt-br">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>Modelo</title>
  6.         <style>
  7.             * {
  8.                 margin: 0;
  9.                 padding: 0;
  10.             }
  11.             body {
  12.                 width: 100%;
  13.                 display: flex;
  14.                 justify-content: center;
  15.                 align-items: center;
  16.                 background-color: #fff;
  17.             }
  18.             .container {
  19.                
  20.             }
  21.             .formulario {
  22.                 margin-top: 30px;
  23.                 display: flex;
  24.                 justify-content: center;
  25.                 align-items: center;
  26.                 flex-direction: column;
  27.                 width: 400px;
  28.                 height: 400px;
  29.                 /*border: 1px solid;*/
  30.                 background-color: #2291ac;
  31.                 border-radius: 15px;
  32.                 box-shadow: 5px 5px 15px #999;
  33.             }
  34.             .title {
  35.                 color: #fff;
  36.                 text-shadow: 1px 1px 4px #000;
  37.                 font-family: "Helvetica", "Arial", sans-serif, serif;
  38.                 font-size: 25px;
  39.                 font-weight: bold;
  40.                 letter-spacing: 4px;
  41.                 text-transform: uppercase;
  42.                 margin-bottom: 15px;
  43.             }
  44.             input {
  45.                 display: block;
  46.                 border-radius: 6px;
  47.                 height: 30px;
  48.                 /*background-color: #fff;*/
  49.                 margin-top: 15px;
  50.             }
  51.             input[type=submit] {
  52.                 text-transform: uppercase;
  53.                 width: 250px;
  54.                 background-color: #5ca5b2;
  55.                 color: #fff;
  56.                 font-weight: bold;
  57.                 height: 40px;
  58.                 border-radius: 8px;
  59.             }
  60.             label {
  61.                 font-family: "Helvetica", "Arial", sans-serif, serif;
  62.                 color: #fff;
  63.                 text-shadow: 1px 1px 4px #000;
  64.                 font-weight: bold;
  65.                 letter-spacing: 4px;
  66.                 text-transform: uppercase;
  67.             }
  68.             input[type=nome] {
  69.                 background-image: url(imagens/man-user.png);
  70.                 background-repeat: no-repeat;
  71.                 background-position: left;
  72.                 background-size: contain;
  73.                 text-align: center;
  74.                 font-style: oblique;
  75.             }
  76.             input[type=password] {
  77.                 background-image: url(imagens/lock.png);
  78.                 background-repeat: no-repeat;
  79.                 background-position: left;
  80.                 background-size: contain;
  81.                 text-align: center;
  82.                 font-style: oblique;
  83.             }
  84.         </style>
  85.     </head>  
  86.        
  87.     <body>
  88.        <div class="container">
  89.            <div class="formulario">
  90.            <div>
  91.                <p class="title">system access</p>
  92.            </div>
  93.             <form>
  94.  
  95.                 <label for="Nome">User:</label>
  96.                 <input type="nome" name="nome" id="nome" size="30" maxlength="15" placeholder="Enter username" autofocus>
  97.                
  98.                 <br><br>
  99.                
  100.                 <label for="Senha">Password:</label>
  101.                 <input type="password" name="senha" id="senha" size="30" maxlength="8" placeholder="Enter password">
  102.                
  103.                 <br><br>
  104.                
  105.                 <input type="submit" value="Enviar" id="enviar">
  106.                
  107.             </form>    
  108.         </div>
  109.     </div>
  110.     </body>
  111. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement