tts / styles.css
bhagvat's picture
Rename style.css to styles.css
30127ca verified
Raw
History Blame Contribute Delete
775 Bytes
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
#app {
display: flex;
flex-direction: column;
height: 100vh;
}
#content {
display: flex;
flex: 1;
}
#sidebar {
width: 25%;
background: #f5f5f5;
padding: 10px;
overflow-y: auto;
}
#main {
flex: 1;
padding: 10px;
overflow-y: auto;
}
#skanda-list {
list-style-type: none;
padding: 0;
}
#skanda-list li {
margin: 5px 0;
cursor: pointer;
}
#skanda-list li:hover {
text-decoration: underline;
}
#sloke-container {
margin-top: 20px;
}
.sloke-item {
margin-bottom: 15px;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
button {
margin-top: 10px;
padding: 5px 10px;
cursor: pointer;
}