Guest User

Untitled

a guest
Apr 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. /*FORM CUSTOM*/
  2. .form-custom input[type="text"] {
  3. border: solid 1px #939598; /*default*/
  4. color: #939598; /*default*/
  5. height: 55px;
  6. padding: 10px;
  7. border-radius: 0;
  8. font-family: 'Helvetica';
  9. }
  10. .form-custom input[type="text"]::placeholder,
  11. .form-custom textarea::placeholder
  12. {
  13. font-family: 'Helvetica';
  14. }
  15. .form-custom input[type="submit"], .form-custom button
  16. {
  17. vertical-align: middle;
  18. font-family: 'Helvetica';
  19. font-size: 18px;
  20. height: 75px;
  21. width: 250px;
  22. border-radius: 0;
  23. background-color: #939598;
  24. color: #FFF;
  25. cursor: pointer;
  26. }
  27.  
  28. /*FORM PURPLE (EXAMPLE) */
  29. .form-custom[class*="-purple"] input[type="text"],
  30. .form-custom[class*="-purple"] textarea {
  31. border: solid 1px #8C74A6;
  32. color: #8C74A6;
  33. }
  34. .form-custom[class*="-purple"] input[type="text"]::placeholder,
  35. .form-custom[class*="-purple"] textarea::placeholder
  36. {
  37. color: #8C74A6;
  38. opacity: 1;
  39. }
  40. .form-custom[class*="-purple"] input[type="submit"], .form-custom button
  41. {
  42. background-color: #8C74A6;
  43. color: #FFF;
  44. }
Add Comment
Please, Sign In to add comment