Simple Chat App
    /* style.css */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f2f2f2; display: flex; justify-content: center; align-items: center; height: 100vh; } #chat-container { width: 400px; background-color: white; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); overflow: hidden; } #messages { list-style-type: none; margin: 0; padding: 10px; height: 300px; overflow-y: scroll; border-bottom: 1px solid #ddd; } #messages li { padding: 8px 10px; border-bottom: 1px solid #eee; } #form { display: flex; padding: 10px; } #input { flex: 1; padding: 10px; border: 1px solid #ddd; border-radius: 4px; margin-right: 10px; } button { padding: 10px 15px; background-color: #28a745; color: white; border: none; border-radius: 4px; cursor: pointer; } button:hover { background-color: #218838; }

    Post a Comment

    0 Comments