98 lines
1.8 KiB
CSS
98 lines
1.8 KiB
CSS
/* custom.css */
|
|
|
|
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
background-color: #121212;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.hero-section {
|
|
background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)), url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?q=80&w=2070&auto=format&fit=crop');
|
|
background-size: cover;
|
|
background-position: center;
|
|
padding: 100px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero-title {
|
|
font-family: 'Poppins', sans-serif;
|
|
font-size: 4rem;
|
|
font-weight: 600;
|
|
color: #FFFFFF;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 1.5rem;
|
|
color: #FFFFFF;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.chat-container {
|
|
max-width: 600px;
|
|
margin: 50px auto;
|
|
background-color: #181818;
|
|
border-radius: 15px;
|
|
padding: 30px;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.chat-box {
|
|
height: 350px;
|
|
overflow-y: auto;
|
|
margin-bottom: 20px;
|
|
padding-right: 15px;
|
|
}
|
|
|
|
.chat-message {
|
|
padding: 15px;
|
|
border-radius: 10px;
|
|
margin-bottom: 15px;
|
|
max-width: 80%;
|
|
}
|
|
|
|
.ai-message {
|
|
background-color: #282828;
|
|
color: #FFFFFF;
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.user-message {
|
|
background: linear-gradient(to right, #1DB954, #1ED760);
|
|
color: #FFFFFF;
|
|
align-self: flex-end;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.chat-input-form {
|
|
display: flex;
|
|
}
|
|
|
|
.chat-input {
|
|
flex-grow: 1;
|
|
padding: 15px;
|
|
border-radius: 25px;
|
|
border: none;
|
|
background-color: #282828;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.chat-input:focus {
|
|
outline: none;
|
|
box-shadow: 0 0 0 2px #1DB954;
|
|
}
|
|
|
|
.send-button {
|
|
padding: 15px 25px;
|
|
border-radius: 25px;
|
|
border: none;
|
|
background: linear-gradient(to right, #1DB954, #1ED760);
|
|
color: #FFFFFF;
|
|
margin-left: 10px;
|
|
cursor: pointer;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.spotify-embed {
|
|
margin-top: 15px;
|
|
} |