Skip to content

Commit

Permalink
Add css lc
Browse files Browse the repository at this point in the history
  • Loading branch information
iyannn03 authored Oct 17, 2024
1 parent 0c34bc1 commit ef5b80f
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,35 @@ footer {
padding: 20px 0;
background-color: #333;
color: #fff;
}
#live-chat {
position: fixed;
bottom: 0;
right: 24px;
font-family: Arial, sans-serif;
}

#live-chat header {
background: #333;
color: white;
padding: 10px;
cursor: pointer;
}

.chat {
display: none;
background: white;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
width: 300px;
position: absolute;
bottom: 0;
right: 0;
}

textarea {
width: 100%;
height: 50px;
padding: 10px;
margin: 10px 0;
}

0 comments on commit ef5b80f

Please sign in to comment.