Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. // Formularz
  2. .gray {
  3. background-color: #D4D2D2;
  4. }
  5.  
  6. form {
  7. width: 100%;
  8. max-width: 800px;
  9. margin: 20px auto;
  10. }
  11.  
  12. fieldset {
  13. background: #eee;
  14. border: thin solid #aaa;
  15. margin: 16px 0;
  16. padding: 8px 16px;
  17. }
  18.  
  19. fieldset legend {
  20. background: white;
  21. color: black;
  22. padding: 8px 16px;
  23. border-radius: 20px;
  24. border: thin solid black;
  25. }
  26.  
  27. input,
  28. label {
  29. float: left;
  30. }
  31.  
  32. input,
  33. textarea {
  34. line-height: 26px;
  35. padding: 0 10px;
  36. border: thin solid #999;
  37. border-radius: 6px;
  38. margin: 0 10px 10px;
  39. }
  40.  
  41. textarea {
  42. float: right;
  43. width: 70%;
  44. }
  45.  
  46. label {
  47. clear: both;
  48. width: 200px;
  49. display: inline-block;
  50. text-align: right;
  51. margin-right: 16px;
  52. }
  53.  
  54. form button {
  55. width: 150px;
  56. height: 40px;
  57. border: thin solid black;
  58. background-color: #2E69EA;
  59. border-radius: 4px;
  60. color: white;
  61. }
  62. //End Formularz
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement