Advertisement
Guest User

Untitled

a guest
Oct 31st, 2016
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. /* contact form */
  2. #contact form { margin-bottom: 30px; }
  3. #contact label {
  4. font: 15px/24px 'opensans-bold', sans-serif;
  5. margin: 12px 0;
  6. color: #EBEEEE;
  7. display: inline-block;
  8. float: left;
  9. width: 26%;
  10. }
  11. #contact input,
  12. #contact textarea,
  13. #contact select {
  14. padding: 18px 20px;
  15. color: #eee;
  16. background: #373233;
  17. margin-bottom: 42px;
  18. border: 0;
  19. outline: none;
  20. font-size: 15px;
  21. line-height: 24px;
  22. width: 65%;
  23. }
  24. #contact input:focus,
  25. #contact textarea:focus,
  26. #contact select:focus {
  27. color: #fff;
  28. background-color: #11ABB0;
  29. }
  30. #contact button.submit {
  31. text-transform: uppercase;
  32. letter-spacing: 3px;
  33. color:#fff;
  34. background: #0D0D0D;
  35. border: none;
  36. cursor: pointer;
  37. height: auto;
  38. display: inline-block;
  39. border-radius: 3px;
  40. margin-left: 26%;
  41. }
  42. #contact button.submit:hover {
  43. color: #0D0D0D;
  44. background: #fff;
  45. }
  46. #contact span.required {
  47. color: #11ABB0;
  48. font-size: 13px;
  49. }
  50. #message-warning, #message-success {
  51. display: none;
  52. background: #0F0F0F;
  53. padding: 24px 24px;
  54. margin-bottom: 36px;
  55. width: 65%;
  56. margin-left: 26%;
  57. }
  58. #message-warning { color: #D72828; }
  59. #message-success { color: #11ABB0; }
  60.  
  61. #message-warning i,
  62. #message-success i {
  63. margin-right: 10px;
  64. }
  65. #image-loader {
  66. display: none;
  67. position: relative;
  68. left: 18px;
  69. top: 17px;
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement