Advertisement
Guest User

Untitled

a guest
Sep 12th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
  5. <meta charset="UTF-8">
  6.  
  7. <title>Elegant Login - Designscrazed</title>
  8. <style>
  9. body {
  10. background-color: #555555;
  11. background-size: cover;
  12. font-family: 'Open Sans', sans-serif;
  13. }
  14.  
  15. .login-block {
  16. width: 320px;
  17. padding: 20px;
  18. background: #fff;
  19. border-radius: 5px;
  20. border-top: 5px solid #ff656c;
  21. margin: 0 auto;
  22. }
  23.  
  24. .login-block h1 {
  25. text-align: center;
  26. color: #000;
  27. font-size: 18px;
  28. text-transform: uppercase;
  29. margin-top: 0;
  30. margin-bottom: 20px;
  31. }
  32.  
  33. .login-block input {
  34. width: 100%;
  35. height: 42px;
  36. box-sizing: border-box;
  37. border-radius: 5px;
  38. border: 1px solid #ccc;
  39. margin-bottom: 20px;
  40. font-size: 14px;
  41. font-family: 'Open Sans', sans-serif;
  42. padding: 0 20px 0 50px;
  43. outline: none;
  44. }
  45.  
  46. .login-block input#username {
  47. background: #fff url('http://i.imgur.com/u0XmBmv.png') 20px top no-repeat;
  48. background-size: 16px 80px;
  49. }
  50.  
  51. .login-block input#username:focus {
  52. background: #fff url('http://i.imgur.com/u0XmBmv.png') 20px bottom no-repeat;
  53. background-size: 16px 80px;
  54. }
  55.  
  56. .login-block input#password {
  57. background: #fff url('http://i.imgur.com/Qf83FTt.png') 20px top no-repeat;
  58. background-size: 16px 80px;
  59. }
  60.  
  61. .login-block input#password:focus {
  62. background: #fff url('http://i.imgur.com/Qf83FTt.png') 20px bottom no-repeat;
  63. background-size: 16px 80px;
  64. }
  65.  
  66. .login-block input:active, .login-block input:focus {
  67. border: 1px solid #ff656c;
  68. }
  69.  
  70. .login-block button {
  71. width: 100%;
  72. height: 40px;
  73. background: #ff656c;
  74. box-sizing: border-box;
  75. border-radius: 5px;
  76. border: 1px solid #e15960;
  77. color: #fff;
  78. font-weight: bold;
  79. text-transform: uppercase;
  80. font-size: 14px;
  81. font-family: 'Open Sans', sans-serif;
  82. outline: none;
  83. cursor: pointer;
  84. }
  85.  
  86. .login-block button:hover {
  87. background: #ff7b81;
  88. }
  89.  
  90. .auto-style1 {
  91. text-align: center;
  92. }
  93.  
  94. </style>
  95. </head>
  96.  
  97. <body>
  98.  
  99. <h1 class="auto-style1" style="width: 360px; margin: 20px auto; color: white;">Plan zakupów</h1>
  100. <div class="login-block">
  101. <h1>Login</h1>
  102. <input type="text" value="" placeholder="Użytkownik" id="username" />
  103. <input type="password" value="" placeholder="Hasło" id="password" />
  104. <button>Zaloguj</button>
  105. </div>
  106. </body>
  107.  
  108. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement