newTransaction.css 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .newTransaction{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. width: 100%;
  6. }
  7. .newTransaction > h2{
  8. text-align: center;
  9. }
  10. #newTransHorizontal{
  11. display: flex;
  12. width: 100%;
  13. margin-top: 10px;
  14. flex-basis: 100px;
  15. flex-grow: 2;
  16. max-height: 75%;
  17. }
  18. #newTransAdd{
  19. width: 50%;
  20. }
  21. #newTransAvailable{
  22. width: 50%;
  23. padding-right: 5px;
  24. border-right: 2px solid rgb(255, 99, 107);
  25. max-height: 100%;
  26. overflow-y: auto;
  27. }
  28. #newTransAvailable .choosable{
  29. background: rgb(240, 252, 255);
  30. color: black;
  31. }
  32. #newTransAvailable input{
  33. padding-right: 2px;
  34. box-sizing: border-box;
  35. width: 99%;
  36. }
  37. #newTransAvailable .choosable:hover{
  38. background: rgb(179, 191, 209);
  39. }
  40. .newTransactionRecipes{
  41. width: 100%;
  42. height: 90%;
  43. overflow-y: auto;
  44. }
  45. .newTransactionRecipe{
  46. display: flex;
  47. flex-direction: column;
  48. align-items: center;
  49. margin: 10px 0;
  50. font-weight: bold;
  51. font-size: 17px;
  52. color: white;
  53. }
  54. .newTransactionRecipe div{
  55. display: flex;
  56. justify-content: space-between;
  57. width: 100%;
  58. margin-bottom: 2px;
  59. padding-left: 10px;
  60. box-sizing: border-box;
  61. }
  62. .newTransactionRecipe input{
  63. box-sizing: border-box;
  64. width: 99%;
  65. }