Untitled

mail@pastecode.io avatar
unknown
plain_text
22 days ago
1.7 kB
6
Indexable
Never
body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #343a40;
}

h2 {
    font-size: 2rem;
    color: #495057;
    margin-top: 2rem;
}

#search-title {
    padding: 0.75rem;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

#podcast-list,
#recommended-podcasts,
#latest-podcasts {
    margin-top: 1rem;
    padding: 1rem 0;
}

.podcast-item {
    transition: transform 0.3s;
}

.podcast-item:hover {
    transform: scale(1.05);
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #343a40;
}

.card-text {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.btn-secondary {
    background-color: #6c757d;
    border: none;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.episode-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#player {
    background-color: #343a40;
    color: #fff;
    padding: 1rem;
    margin-top: 2rem;
    border-radius: 5px;
}

#playerImage {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

#playerControls {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 1rem;
}

#seekBar {
    width: 100%;
}

.time-display {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}
Leave a Comment