Guest User

Untitled

a guest
Dec 14th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. <p>
  2. <label >Position: check all you are interested in </label>
  3. <input type="checkbox" name="job[]" value="General Pickle Production">General Pickle Production</input>
  4. <input type="checkbox" name="job[]" value="Fryer">Fryer</input>
  5. <input type="checkbox" name="job[]" value="Sales">Sales</input>
  6. <input type="checkbox" name="job[]" value="Manager">Manager</input>
  7. <input type="checkbox" name="job[]" value="Overnights">Overnights</input>
  8.  
  9. </p>
  10.  
  11. form {
  12. background: -webkit-linear-gradient(bottom, #CCCCCC, #EEEEEE 175px);
  13. background: -moz-linear-gradient(bottom, #CCCCCC, #EEEEEE 175px);
  14. background: linear-gradient(bottom, #CCCCCC, #EEEEEE 175px);
  15. margin: auto;
  16. position: relative;
  17. width: 750px;
  18. height: 1200px;
  19. font-family: Tahoma, Geneva, sans-serif;
  20. font-size: 16px;
  21.  
  22. line-height: 24px;
  23.  
  24. color: #000000;
  25. text-decoration: none;
  26. border-radius: 10px;
  27. padding: 10px;
  28. border: 1px solid #999;
  29. border: inset 1px solid #333;
  30. -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  31. -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  32. box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  33.  
  34. }
  35.  
  36. label {
  37. text-align: left;
  38. width: 200px;
  39. display: flex;
  40. }
  41.  
  42. input {
  43. width: 300px;
  44. float: left;
  45. }
  46.  
  47. fieldset p {
  48. clear: both;
  49. padding: 10px;
  50. }
  51.  
  52. input[type=radio], input[type=checkbox]{
  53. flex: none;
  54. }
  55.  
  56. textarea#feedback {
  57. width: 400px;
  58. height: 150px;
  59. }
Add Comment
Please, Sign In to add comment