Advertisement
Guest User

Untitled

a guest
Aug 24th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.06 KB | None | 0 0
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. background: url('https://scontent.fsjj1-1.fna.fbcdn.net/v/t1.0-9/18664699_771709486321698_4782492510987879738_n.jpg?oh=8722f61ad9395b7bd39a45e8455dcf20&oe=5A0F980B') no-repeat fixed center center;
  5. background-size: cover;
  6. font-family: Montserrat;
  7. }
  8.  
  9. .logo {
  10. width: 300px;
  11. height: 169px;
  12. background: url('https://s3.amazonaws.com/smartzone-solution404/logoHD.png') no-repeat;
  13. margin: 30px auto;
  14. }
  15.  
  16. .login-block {
  17. width: 320px;
  18. padding: 20px;
  19. background: #fff;
  20. border-radius: 5px;
  21. border-top: 5px solid #000033;
  22. margin: 0 auto;
  23. }
  24.  
  25. .login-block h1 {
  26. text-align: center;
  27. color: #000;
  28. font-size: 18px;
  29. text-transform: uppercase;
  30. margin-top: 0;
  31. margin-bottom: 20px;
  32. }
  33.  
  34. .login-block input {
  35. width: 100%;
  36. height: 42px;
  37. box-sizing: border-box;
  38. border-radius: 5px;
  39. border: 1px solid #ccc;
  40. margin-bottom: 20px;
  41. font-size: 14px;
  42. font-family: Montserrat;
  43. padding: 0 20px 0 50px;
  44. outline: none;
  45. }
  46.  
  47. .login-block textarea {
  48. width: 100%;
  49. box-sizing: border-box;
  50. border-radius: 5px;
  51. border: 1px solid #ccc;
  52. margin-bottom: 20px;
  53. font-size: 14px;
  54. font-family: Montserrat;
  55. padding: 0 20px 0 50px;
  56. outline: none;
  57. }
  58. .login-block input#username {
  59. background: #fff url('http://i.imgur.com/u0XmBmv.png') 20px top no-repeat;
  60. background-size: 16px 80px;
  61. }
  62.  
  63. .login-block input#username:focus {
  64. background: #fff url('http://i.imgur.com/u0XmBmv.png') 20px bottom no-repeat;
  65. background-size: 16px 80px;
  66. }
  67.  
  68. .login-block input#password {
  69. background: #fff url('http://i.imgur.com/Qf83FTt.png') 20px top no-repeat;
  70. background-size: 16px 80px;
  71. }
  72.  
  73. .login-block input#password:focus {
  74. background: #fff url('http://i.imgur.com/Qf83FTt.png') 20px bottom no-repeat;
  75. background-size: 16px 80px;
  76. }
  77.  
  78. .login-block input:active, .login-block input:focus {
  79. border: 1px solid #000000;
  80. }
  81.  
  82. .login-block button {
  83. width: 100%;
  84. height: 40px;
  85. background: #000033
  86. ;
  87. box-sizing: border-box;
  88. border-radius: 5px;
  89. border: 1px solid white;
  90. color: #fff;
  91. font-weight: bold;
  92. text-transform: uppercase;
  93. font-size: 14px;
  94. font-family: Montserrat;
  95. outline: none;
  96. cursor: pointer;
  97. }
  98.  
  99. .login-block button {
  100. background: #000000;
  101. }
  102. .tooltip {
  103. position: relative;
  104. display: inline-block;
  105. border-bottom: 1px dotted black;
  106. }
  107.  
  108. .tooltip .tooltiptext {
  109. visibility: hidden;
  110. width: 120px;
  111. background-color: black;
  112. color: #fff;
  113. text-align: center;
  114. border-radius: 6px;
  115. padding: 5px 0;
  116. position: absolute;
  117. z-index: 1;
  118. bottom: 150%;
  119. left: 50%;
  120. margin-left: -60px;
  121. }
  122.  
  123. .tooltip .tooltiptext::after {
  124. content: "";
  125. position: absolute;
  126. top: 100%;
  127. left: 50%;
  128. margin-left: -5px;
  129. border-width: 5px;
  130. border-style: solid;
  131. border-color: black transparent transparent transparent;
  132. }
  133.  
  134. .tooltip .tooltiptext {
  135. visibility: visible;
  136. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement