Guest User

Untitled

a guest
May 18th, 2018
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Log In</title>
  4. <style>
  5.  
  6.  
  7. @font-face{
  8. font-family: Roboto Thin;
  9. src: url("Roboto-Thin.ttf");
  10. }
  11.  
  12. @font-face{
  13. font-family: Roboto Bold;
  14. src: url("Roboto-Bold.ttf");
  15. }
  16.  
  17. body{
  18. padding: 0px;
  19. margin: 0px;
  20. }
  21. ::placeholder{
  22. color: white;
  23. opacity: 0.8;
  24. }
  25.  
  26. .username{
  27. width: 200px;
  28. height: 30px;
  29. background-color: transparent;
  30. border-top: none;
  31. border-left: none;
  32. border-right: none;
  33. border-bottom-color: gray;
  34. border-bottom-width: 2px;
  35. z-index: 25;
  36. position: relative;
  37. top: -520px;
  38. color: white;
  39. right: -530px;
  40. font-family: Roboto Thin;
  41. }
  42.  
  43. .username:hover{
  44. width: 220px;
  45. height: 50px;
  46. background-color: transparent;
  47. border-top: none;
  48. border-left: none;
  49. border-right: none;
  50. border-bottom-color: gray;
  51. border-bottom-width: 2px;
  52. z-index: 25;
  53. position: relative;
  54. top: -520px;
  55. color: white;
  56. right: -530px;
  57. font-family: Roboto Thin;
  58. font-size: 15pt;
  59. transition-property: all;
  60. transition-duration: 300ms;
  61. }
  62.  
  63. .password{
  64. width: 200px;
  65. height: 30px;
  66. background-color: transparent;
  67. border-top: none;
  68. border-left: none;
  69. border-right: none;
  70. border-bottom-color: gray;
  71. border-bottom-width: 2px;
  72. z-index: 25;
  73. position: relative;
  74. top: -520px;
  75. color: white;
  76. right: -530px;
  77. font-family: Roboto Thin;
  78. }
  79.  
  80. .password:hover{
  81. width: 220px;
  82. height: 50px;
  83. background-color: transparent;
  84. border-top: none;
  85. border-left: none;
  86. border-right: none;
  87. border-bottom-color: gray;
  88. border-bottom-width: 2px;
  89. z-index: 25;
  90. position: relative;
  91. top: -520px;
  92. color: white;
  93. right: -530px;
  94. font-family: Roboto Thin;
  95. font-size: 15pt;
  96. transition-property: all;
  97. transition-duration: 300ms;
  98. }
  99.  
  100.  
  101. .logIn{
  102. font-family: Roboto Bold;
  103. font-size: 45pt;
  104. text-align: center;
  105. color: white;
  106. position: relative;
  107. top: -525px;
  108. right: -50px;
  109. }
  110.  
  111. .submit{
  112. width: 110px;
  113. height: 40px;
  114. position: relative;
  115. top: -465px;
  116. right: -365px;
  117. background-color: transparent;
  118. color: white;
  119. border-color: gray;
  120. border-radius: 10px;
  121. }
  122.  
  123. .submit:hover{
  124. width: 120px;
  125. height: 50px;
  126. transition-property: all;
  127. transition-duration: 350ms;
  128. border-radius: 7px;
  129. background-color: transparent;
  130. font-family: Roboto Bold;
  131. font-size: 20pt;
  132. }
  133.  
  134. .options{
  135. position: relative;
  136. top: -520px;
  137. right: -550px;
  138. background-color: transparent;
  139. font-family: Roboto Light;
  140. font-size: 12pt;
  141. width: 150px;
  142. height: 25px;
  143. color: gray;
  144. }
  145.  
  146.  
  147. </style>
  148. </head>
  149. <body>
  150. <img src = "bg.jpg" style = "z-index: -25; width: 100%; height: 100%;">
  151.  
  152. <p class = "logIn">Log In</p>
  153.  
  154.  
  155. <form>
  156. <input type = "text" placeholder = "Enter Your username or email" class = "username">
  157. <input type = "password" placeholder = "Password" class = "password">
  158. <input type = "submit" value = "Submit" class = "submit">
  159. </form>
  160.  
  161. <select class = "options">
  162. <option>Hrvatska</option>
  163. <option>United Kingdom</option>
  164. <option>USA</option>
  165. </select>
  166.  
  167.  
  168. </body>
  169. </html>
Add Comment
Please, Sign In to add comment