Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. form h3{
  2. text-align: left;
  3. border-bottom: 2px solid black;
  4. padding: 0 30px 10px 10px;
  5. margin: 0 10px;
  6. }
  7.  
  8. form h3:nth-child(4){
  9. padding: 20px 30px 10px 10px;
  10. }
  11.  
  12. form:last-child h3{
  13. padding: 20px 30px 10px 10px;
  14. }
  15.  
  16.  
  17. form input[type=submit]{
  18. border-radius: 3px;
  19. margin: 30px 10px 0 10px;
  20. color: #ffffff;
  21. box-shadow: 2px 4px 15px rgba(103, 103, 103, 0.53);
  22. background-color: #20a3ac;
  23. font-family: MyWebFont,Arial;
  24. height: 35px;
  25. text-transform: uppercase;
  26. border: none;
  27. }
  28.  
  29.  
  30. form input[type=text] {
  31. padding-left: 10px;
  32. margin: 10px;
  33. height: 20px;
  34. width: calc(100% - 105px);
  35. }
  36.  
  37.  
  38. select{
  39. border-radius: 3px;
  40. margin: 30px 10px 0 10px;
  41. padding-left: 10px;
  42. box-shadow: 2px 4px 15px rgba(103, 103, 103, 0.53);
  43. font-family: MyWebFont,Arial;
  44. height: 35px;
  45. text-transform: uppercase;
  46. border: none;
  47. }
  48.  
  49.  
  50. form textarea{
  51. width: calc(100% - 25px);
  52. margin: 10px;
  53. padding-left: 10px;
  54. }
  55.  
  56.  
  57. form:last-child input[type=submit]{
  58. margin: 10px;
  59. width: calc(100% - 20px);
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement