Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. body {
  2. margin: 0, auto;
  3. font-family: "Courier New", Courier, monospace;
  4. }
  5.  
  6. .list {
  7. padding: 4px;
  8. }
  9.  
  10. h4 {
  11. line-height: 6px;
  12. }
  13.  
  14. .list > li {
  15. display: flex;
  16. justify-content: "center";
  17. align-content: "center";
  18. background-color: white;
  19. padding: 12px;
  20. border-radius: 8px;
  21. box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 4px 12px 0 rgba(0, 0, 0, 0.19);
  22. text-align: center;
  23. border: 1px darkgray;
  24. }
  25.  
  26. .inputContainer {
  27. margin: 4px;
  28. display: flex;
  29. flex: 1;
  30. flex-direction: column;
  31. }
  32.  
  33. .addForm {
  34. width: "100%";
  35. display: flex;
  36. }
  37.  
  38. .addForm input[type="text"] {
  39. width: 100%;
  40. padding: 12px 20px;
  41. margin: 8px 0;
  42. box-sizing: border-box;
  43. }
  44.  
  45. .addForm label {
  46. padding-left: 8px;
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement