Advertisement
Guest User

Neonix Login

a guest
Oct 1st, 2017
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 4.34 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Neonix - Login</title>
  5.  
  6.     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  7.     <style type="text/css">
  8.         a {text-decoration: none;color:red;}
  9.         body {
  10.             margin: 0;
  11.             background: #f2f1ef;
  12.         }
  13.         @font-face {
  14.             font-family: "Open Sans";
  15.             font-style: normal;
  16.             font-weight: 400;
  17.             src: local("Open Sans"), local("OpenSans"), url(https://themes.googleusercontent.com/static/fonts/opensans/v6/K88pR3goAWT7BTt32Z01mz8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
  18.         }
  19.         .base {
  20.             display: flex;
  21.             justify-content: center;
  22.         }
  23.         .conteudo {
  24.     background: white;
  25.     width: 29%;
  26.     height: 551px;
  27.     margin-top: 6%;
  28. }
  29.         .box {
  30.             width: 80%;
  31.             margin: auto;
  32.         }
  33.         .logo {
  34.             text-align: center;
  35.             font-size: 63px;
  36.             font-family: sans-serif;
  37.             font-weight: bold;
  38.             color: #3184da;
  39.             margin: 81px auto auto auto;
  40.         }
  41.         .loginregistrese {
  42.             height: 73px;
  43.         }
  44. .login {
  45.     float: left;
  46.     text-transform: uppercase;
  47.     font-family: Open sans;
  48.     color: #3184da;
  49.     border-bottom: 1px solid #3184da;
  50.     width: 50%;
  51.     text-align: center;
  52.     cursor: context-menu;
  53. }
  54. .registrese {
  55.     float: left;
  56.     text-transform: uppercase;
  57.     font-family: Open sans;
  58.     color: #e2e2e2;
  59.     border-bottom: 1px solid #e2e2e2;
  60.     width: 50%;
  61.     text-align: center;
  62.     cursor: pointer;
  63. }
  64. .alert {
  65.     color: #ff3c3c;
  66.     font-family: open sans;
  67.     font-size: 14px;
  68.     width: 50%;
  69.     height: 25px;
  70.     line-height: 2;
  71.     text-indent: 8px;
  72.     border: 1px solid #ff3c3c;
  73.     border-radius: 5px;
  74. }
  75. .alert:before {
  76.     content: '\f05c';
  77.     font: normal normal normal 14px/1 FontAwesome;
  78.     margin: 0 4px 0 0;
  79.     line-height: 0;
  80. }
  81. .forms {
  82.     width: 100%;
  83.     height: 87px;
  84.     margin: 20px auto auto auto;
  85. }
  86. input.loginput {
  87.     border-top: 0;
  88.     border-left: 0;
  89.     border-right: 0;
  90.     border-bottom: 1px solid #e2e2e2;
  91.     width: 70%;
  92.     height: 22px;
  93.     margin-bottom: 22px;
  94.     font-size: 19px;
  95.     font-family: Open Sans;
  96.     padding: 4px 10px;
  97. }
  98. .loginput:focus {
  99.     outline: none;
  100. }
  101. input.passput {
  102.     border-top: 0;
  103.     border-left: 0;
  104.     border-right: 0;
  105.     border-bottom: 1px solid #e2e2e2;
  106.     width: 70%;
  107.     height: 22px;
  108.     margin-bottom: 22px;
  109.     font-size: 19px;
  110.     font-family: Open Sans;
  111.     padding: 4px 10px;
  112. }
  113. .passput:focus {
  114.     outline: none;
  115. }
  116. i.fa.fa-user {
  117.     width: 23px;
  118.     height: 26px;
  119.     border-bottom: 1px solid #e2e2e2;
  120.     padding: 0 13px 0px 17px;
  121.     font-size: 21px;
  122.     color: #3184da;
  123. }
  124. i.fa.fa-lock {
  125.     width: 23px;
  126.     height: 26px;
  127.     border-bottom: 1px solid #e2e2e2;
  128.     padding: 0 13px 0px 17px;
  129.     font-size: 21px;
  130.     color: #3184da;
  131. }
  132. button.buttonput {
  133.     background: #3184da;
  134.     color: #fff;
  135.     font-family: Open Sans;
  136.     width: 67%;
  137.     border: 0;
  138.     height: 39px;
  139.     margin: auto;
  140.     display: flex;
  141.     justify-content: center;
  142.     border-radius: 33px;
  143.     cursor: pointer;
  144.     transition: all 0.4s cubic-bezier(0.42, 0, 0.51, 0.85);
  145. }
  146. button.buttonput:hover {
  147.     background: #19497b;
  148.     transition: all 0.4s cubic-bezier(0.42, 0, 0.51, 0.85);
  149. }
  150. .conteudo {
  151.     background: white;
  152.     width: 29%;
  153.     height: 551px;
  154. }
  155. span.forgpass {
  156.     color: #e2e2e2;
  157.     font-family: Open Sans;
  158.     font-size: 12px;
  159.     float: right;
  160.     margin: 0 10px 25px 0;
  161. }
  162. </style>
  163. </head>
  164. <body>
  165. <div class="base">
  166.     <div class="conteudo">
  167.         <div class="logo">NEONIX</div>
  168.        
  169. <div class="box">
  170.         <div class="loginregistrese">
  171.             <div class="login">Login</div>
  172.             <div class="registrese">Registre-se</div>
  173.         </div>
  174.         <div class="alert">Senha Incorreta</div>
  175.        
  176.         <div class="forms">
  177.             <span class="loginput1"><i class="fa fa-user" aria-hidden="true"></i><input type="text" name="login" placeholder="Usuário" class="loginput" tabindex="1"></span>
  178.             <span class="passput1"><i class="fa fa-lock" aria-hidden="true"></i><input type="password" name="login" placeholder="Senha" class="passput" tabindex="1"></span>
  179.             <a href="#"><span class="forgpass">Esqueceu sua senha?</span></a>
  180.             <span class="buttonput1"><button type="submit" class="buttonput">Log In</button></span>
  181.  
  182.         </div>
  183. </div>
  184.  
  185.    
  186.  
  187.  
  188.  
  189.     </div>
  190.  
  191. </div>
  192. </body>
  193. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement