0% found this document useful (0 votes)
37 views3 pages

Body Css

Uploaded by

Vaheed ali
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
37 views3 pages

Body Css

Uploaded by

Vaheed ali
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

body {

font-family: Arial, sans-serif;

background-color: #f9f9f9;

display: flex;

justify-content: center;

align-items: center;

height: 100vh;

margin: 0;

.chat-container {

border: 1px solid #ccc;

border-radius: 10px;

width: 300px;

background-color: white;

padding: 10px;

.chat-box {

height: 200px;

overflow-y: auto;

border: 1px solid #ccc;

border-radius: 5px;

padding: 5px;

margin-bottom: 10px;

}
.chat-message {

margin: 5px 0;

.user {

text-align: right;

.bot {

text-align: left;

color: #555;

input[type="text"] {

width: calc(100% - 60px);

padding: 10px;

border: 1px solid #ccc;

border-radius: 5px;

button {

padding: 10px;

border: none;

background-color: #28a745;

color: white;

border-radius: 5px;

cursor: pointer;
}

button:hover {

background-color: #218838;

You might also like