74 lines
1.3 KiB
CSS
74 lines
1.3 KiB
CSS
body {
|
|
margin: 0;
|
|
padding-bottom: 3rem;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
|
background-color: #f9f9f9;
|
|
color: #333;
|
|
}
|
|
|
|
#form, #recipientForm {
|
|
background: rgba(255, 255, 255, 0.9);
|
|
padding: 0.5rem;
|
|
display: flex;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
backdrop-filter: blur(10px);
|
|
z-index: 1000;
|
|
}
|
|
|
|
#form {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
#recipientForm {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
#input, #recipient {
|
|
border: 1px solid #ddd;
|
|
padding: 0.5rem 1rem;
|
|
flex-grow: 1;
|
|
border-radius: 20px;
|
|
margin-right: 0.5rem;
|
|
font-size: 1rem;
|
|
transition: border-color 0.3s ease;
|
|
}
|
|
|
|
#input:focus, #recipient:focus {
|
|
outline: none;
|
|
border-color: #007bff;
|
|
}
|
|
|
|
#form > button, #recipientForm > button {
|
|
background: #007bff;
|
|
border: none;
|
|
padding: 0.5rem 1rem;
|
|
margin: 0.25rem;
|
|
border-radius: 20px;
|
|
color: #fff;
|
|
font-size: 1rem;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
#form > button:hover, #recipientForm > button:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
|
|
#logout {
|
|
background-color: #dc3545;
|
|
}
|
|
|
|
#logout:hover {
|
|
background-color: #c82333;
|
|
}
|
|
|
|
#messages
|