Spaces:
Running
Running
| * { | |
| /* outline: red solid 1px; */ | |
| } | |
| .chat-container { | |
| width: 100%; | |
| height: fit-content; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| justify-content: center; | |
| } | |
| .logo-container { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| width: fit-content; | |
| height: fit-content; | |
| margin: auto; | |
| margin-bottom: 20px; | |
| } | |
| .logo-container p { | |
| color: #0C0F15; | |
| font-family: Inter; | |
| font-size: 20px; | |
| font-style: normal; | |
| font-weight: 700; | |
| line-height: 30px; | |
| } | |
| .chatBot_area{ | |
| display: flex; | |
| flex-direction: column; | |
| justify-content: center; | |
| align-items: center; | |
| width: 70%; | |
| height: fit-content; | |
| } | |
| .displayArea { | |
| width: 100%; | |
| height: fit-content; | |
| } | |
| .chatBot_area form { | |
| width: 100%; | |
| padding: 10px; | |
| } | |
| .chatBot_area form input{ | |
| display: flex; | |
| width: 80%; | |
| padding: 15px 10px; | |
| border-radius: 8px; | |
| border: 1px solid var(--Greys-Grey-700, #A0A3AA); | |
| padding: 10px; | |
| font-size: 14px; | |
| flex: 1; | |
| } | |
| .chatBot_area form button { | |
| background-color: #E7EBF2; | |
| border: none; | |
| padding: 10px; | |
| border-radius: 5px; | |
| cursor: pointer; | |
| } | |
| /*MOBILE DEVICES*/ | |
| @media only screen and (max-width: 767px) { | |
| .chat-container { | |
| padding: 20px; | |
| } | |
| .chatBot_area{ | |
| width: 90%; | |
| } | |
| .displayArea { | |
| width: 100%; | |
| height: fit-content; | |
| } | |
| .chatBot_area form { | |
| width: 100%; | |
| padding: 10px; | |
| } | |
| .chatBot_area form input{ | |
| display: flex; | |
| width: 60%; | |
| } | |
| } |