settings.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. #accountStrand{
  2. padding: 15px;
  3. box-sizing: border-box;
  4. align-items: center;
  5. }
  6. .settings{
  7. display: flex;
  8. flex-direction: column;
  9. width: 75%;
  10. max-height: 100%;
  11. overflow-y: auto;
  12. }
  13. .settingsSection{
  14. display: flex;
  15. flex-direction: column;
  16. justify-content: center;
  17. align-items: flex-start;
  18. margin: 15px 0;
  19. background: white;
  20. padding: 35px;
  21. }
  22. .settingsSectionHeader{
  23. width: 100%;
  24. display: flex;
  25. justify-content: space-between;
  26. align-items: center;
  27. margin-bottom: 25px;
  28. border-bottom: 1px solid black;
  29. }
  30. .newLocationButtons{
  31. display: flex;
  32. align-items: center;
  33. }
  34. .newLocationButtons h1{
  35. padding: 0;
  36. margin-right: 15px;
  37. }
  38. #accountInformation{
  39. display: flex;
  40. flex-direction: column;
  41. align-items: flex-start;
  42. }
  43. #accountInformationData{
  44. width: 50%;
  45. }
  46. #accountInformation label{
  47. display: flex;
  48. justify-content: space-between;
  49. width: 100%;
  50. margin-bottom: 10px;
  51. }
  52. #accountUpdate{
  53. max-width: 500px;
  54. }
  55. #settingsMerchants{
  56. display: flex;
  57. flex-direction: column;
  58. align-items: flex-start;
  59. width: 100%;
  60. }
  61. #settingsMerchants button{
  62. width: 50%;
  63. }
  64. #securityData{
  65. display: flex;
  66. flex-direction: column;
  67. align-items: flex-start;
  68. }
  69. #securityData button, #securityData a{
  70. width: 240px;
  71. box-sizing: border-box;
  72. }
  73. #accountShowPassword{
  74. max-width: 300px;
  75. }
  76. #changePasswordBox{
  77. flex-direction: column;
  78. padding: 25px;
  79. background: rgb(179, 191, 209);
  80. }
  81. #changePasswordBox label{
  82. display: flex;
  83. justify-content: space-between;
  84. align-items: center;
  85. margin: 5px;
  86. }
  87. #changePasswordBox p{
  88. color: red;
  89. }
  90. #accountButtonBox{
  91. margin: 0;
  92. }