Advertisement
Guest User

Untitled

a guest
Jan 30th, 2017
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. <style type="text/css">
  2. * {
  3. font-family: Arial !important;
  4. }
  5. ::-webkit-input-placeholder {
  6. color: #fff;
  7. font-weight: bold;
  8. }
  9.  
  10. :-moz-placeholder { /* Firefox 18- */
  11. color: #fff;
  12. font-weight: bold;
  13. }
  14.  
  15. ::-moz-placeholder { /* Firefox 19+ */
  16. color: #fff;
  17. font-weight: bold;
  18. }
  19.  
  20. :-ms-input-placeholder {
  21. color: #fff;
  22. font-weight: bold;
  23. }
  24.  
  25. .kotak {
  26. display: block; width: 300px; margin: 50px auto; font-size: 14px; background-color: #3f468c; color: #fff; padding: 25px; border-radius: 2px;
  27. }
  28.  
  29. h1 {
  30. text-align: center; color: #4fbfff
  31. }
  32.  
  33. h2 {
  34. text-align: center; color: #fff
  35. }
  36.  
  37. input[type="text"], input[type="password"] {
  38. border: 2px solid #fff; display: block; padding: 6px; width: 300px; background-color: transparent; color: #fff; margin-bottom: 25px; border-radius: 2px; opacity: 1; font-size: 14px;
  39. }
  40.  
  41. input[type="text"]:focus, input[type="password"]:focus {
  42. border-color: #4fbfff;
  43. }
  44.  
  45. input[type="submit"] {
  46. width: 300px;
  47. background-color: #4fbfff;
  48. border: none;
  49. padding: 6px;
  50. color: #fff;
  51. font-weight: bold;
  52. font-size: 18px;
  53. border-radius: 2px;
  54. }
  55.  
  56. </style>
  57.  
  58.  
  59. <div class="kotak">
  60. <h1>DINAS PENDIDIKAN</h1>
  61. <h2>Welcome Back!</h2>
  62. <form action="inputuser.php" method="POST">
  63. <input type="text" name="username" placeholder="Username :" required>
  64. <input type="password" name="password" placeholder="Password :" required>
  65. <input type="submit" name="daftar" value="LOG IN">
  66. </form>
  67. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement