@import url("https://fonts.googleapis.com/css?family=Open+Sans"); html { height: 100%; } body { margin: 0; font-family: "Open Sans", sans-serif; } .app-container { background-color: #f5f5f5; display: flex; flex-direction: column; font-size: 16px; } .vehicles-container { display: flex; flex-direction: column; align-items: center; padding: 0px 30px; margin: 5px 20px; } .vehiclesRow { display: flex; flex-direction: column; align-items: center; justify-content: center; margin: auto; width: 100%; } .vehiclesColumn { display: flex; flex-direction: column; flex-wrap: wrap; height: 205px; padding: 20px; } .veh-col { display: flex; flex-direction: column; } .veh-row { display: flex; flex-direction: row; } .veh-row-price { display: flex; flex-direction: row; } .vehBox { padding: 5px 5px 8px 8px; border: 1px solid #5d86a8; border-radius: 6px; max-width: 535px; flex: 1 0 auto; background-color: #f9f5ff; } .veh-text { margin: 4px 5px; } .formHeader { text-align: center; letter-spacing: 0.08rem; } .formHeader2 { letter-spacing: 0.08rem; margin-top: 10px; margin-bottom: 10px; } .text-input { width: 220px; height: 24px; margin: 8px 0px; border: 1px solid #c0c8cf; border-radius: 4px; } .alert { color: red; font-size: 0.8rem; padding-top: 8px; margin: 8px 0px; } .auxButton { height: 30px; width: 125px; border: 1px solid #8ac8ff; border-radius: 6px; color: #0f1111; font-family: "Open Sans", sans-serif; cursor: pointer; padding: 7px 0px 26px 0px; margin: 25px auto; background-color: #ffefef; } .auxButton2 { height: 30px; width: 125px; border: 1px solid #8ac8ff; border-radius: 6px; background-color: #ffefef; color: #0f1111; font-family: "Open Sans", sans-serif; cursor: pointer; padding: 7px 0px 26px 0px; margin: 15px auto 25px auto; } .button { margin-top: 8px; align-items: center; height: 30px; width: 125px; border: 1px solid #c0c8cf; border-radius: 6px; background-color: white; color: #0f1111; font-family: "Open Sans", sans-serif; cursor: pointer; padding: 7px 0px 16px 0px; } .deleteButton { margin-top: 8px; height: 30px; width: 125px; border: 1px solid #c0c8cf; border-radius: 6px; background-color: white; color: #0f1111; cursor: pointer; line-height: 29px; font-family: "Open Sans", sans-serif; padding: 2px 0px 31px 0px; vertical-align: middle; margin-top: 12px; } .deleteButtonBox { display: flex; flex-direction: column; justify-content: center; align-items: center; margin: 15px auto; } .inputContainer { display: flex; flex-direction: column; align-items: center; margin: 0px auto; width: 250px; padding-bottom: 5px; } .navBarContainer { height: 50px; padding: 15px 20px 0px 20px; border-bottom: 2px solid #a9a9a9; background-color: #fcf6ff; } .navRow { margin: 0px 15px 2px 15px; padding: 5px 5px; font-size: 1rem; font-family: "Open Sans", sans-serif; letter-spacing: 0.05rem; } .navSpan { margin: 10px 10px; } .navSpan:hover { cursor: pointer; color: blue; } .getHeader { margin-top: -8px; } .fetchBox { margin-bottom: 25px; display: flex; flex-direction: column; justify-content: center; align-items: center; margin: auto; } @media only screen and (max-width: 460px) { .vehicles-container { max-width: 400px; padding: 0px 10px; margin: 2px auto; } .vehiclesColumn { height: 100%; } .navBarContainer { display: none; } .formHeader { text-align: center; } .vehBox { max-width: 260px; display: flex; flex-wrap: wrap; } .veh-row-price { display: flex; flex-direction: column; } }