Advertisement
Guest User

Untitled

a guest
Jun 9th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. .logo {
  2. margin: 100px auto;
  3. display: block;
  4. margin-left: auto;
  5. margin-right: auto;
  6. }
  7.  
  8. .login-block {
  9. width: 320px;
  10. padding: 20px;
  11. background: #fff;
  12. border-radius: 5px;
  13. border-top: 5px solid #0071BC;
  14. margin: 0 auto;
  15. }
  16.  
  17. .login-block h1 {
  18. text-align: center;
  19. color: #000;
  20. font-size: 18px;
  21. text-transform: uppercase;
  22. margin-top: 0;
  23. margin-bottom: 20px;
  24. }
  25.  
  26. .login-block input {
  27. width: 100%;
  28. height: 42px;
  29. box-sizing: border-box;
  30. border-radius: 5px;
  31. border: 1px solid #ccc;
  32. margin-bottom: 20px;
  33. font-size: 14px;
  34. font-family: Montserrat;
  35. padding: 0 20px 0 50px;
  36. outline: none;
  37. }
  38.  
  39. .login-block input#username {
  40. background: #fff url('http://i.imgur.com/u0XmBmv.png') 20px top no-repeat;
  41. background-size: 16px 80px;
  42. }
  43.  
  44. .login-block input#username:focus {
  45. background: #fff url('http://i.imgur.com/u0XmBmv.png') 20px bottom no-repeat;
  46. background-size: 16px 80px;
  47. }
  48.  
  49. .login-block input#password {
  50. background: #fff url('http://i.imgur.com/Qf83FTt.png') 20px top no-repeat;
  51. background-size: 16px 80px;
  52. }
  53.  
  54. .login-block input#password:focus {
  55. background: #fff url('http://i.imgur.com/Qf83FTt.png') 20px bottom no-repeat;
  56. background-size: 16px 80px;
  57. }
  58.  
  59. .login-block input:active, .login-block input:focus {
  60. border: 1px solid #0099ff;
  61. }
  62.  
  63. .login-block button {
  64. width: 100%;
  65. height: 40px;
  66. background: #0071BC;
  67. box-sizing: border-box;
  68. border-radius: 5px;
  69. border: 1px solid #0099ff;
  70. color: #fff;
  71. font-weight: bold;
  72. text-transform: uppercase;
  73. font-size: 14px;
  74. font-family: Montserrat;
  75. outline: none;
  76. cursor: pointer;
  77. }
  78.  
  79. .login-block button:hover {
  80. background: #0099ff;
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement