Advertisement
Guest User

Untitled

a guest
Sep 17th, 2014
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. /***** Login *******/
  2. fieldset {
  3. border: none;
  4. margin: 0;
  5. }
  6.  
  7. input {
  8. border: none;
  9. font-family: inherit;
  10. font-size: inherit;
  11. margin: 0;
  12. -webkit-appearance: none;
  13. }
  14.  
  15. input:focus {
  16. outline: none;
  17. }
  18.  
  19. input[type="submit"] { cursor: pointer; }
  20.  
  21. /* ---------- LOGIN-FORM ---------- */
  22.  
  23. #login-form {
  24. margin: 10px;
  25. width: 300px;
  26. border: 1px solid #ea6e10;
  27. vertical-align: middle;
  28. }
  29.  
  30. #login-form h3 {
  31. background-color:#ea6e10;
  32. color: #fff;
  33. font-size: 14px;
  34. margin-top: 0;
  35. padding: 20px;
  36. text-align: right;
  37. }
  38.  
  39. #login-form fieldset {
  40. background: #fff;
  41. border: 1px #ea6e10;
  42. padding: 20px;
  43. position: relative;
  44. }
  45.  
  46.  
  47. #login-form input {
  48. font-size: 14px;
  49. }
  50.  
  51. #login-form input[type="username"],
  52. #login-form input[type="password"] {
  53. background: #dcdcdc;
  54. padding: 12px 10px;
  55. width: 238px;
  56. margin-top: 5px;
  57. }
  58.  
  59. #login-form input[type="username"] {
  60.  
  61. }
  62.  
  63. #login-form input[type="password"] {
  64. border-radius: 0px 0px 3px 3px;
  65. }
  66.  
  67. #login-form input[type="submit"] {
  68. background: #ea6e10;
  69. text-align: center;
  70. color: #fff;
  71. float: left;
  72. font-weight: bold;
  73. margin-top: 5px;
  74. padding: 12px 20px;
  75. width: 100%;
  76. }
  77.  
  78. #login-form input[type="submit"]:hover {
  79. background: #ea6e10;
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement