46 lines
766 B
CSS
46 lines
766 B
CSS
|
.player {
|
||
|
width: 100%;
|
||
|
margin-bottom: 2rem;
|
||
|
}
|
||
|
.podcast-logos {
|
||
|
display: flex;
|
||
|
flex-flow: row wrap;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.audio-logos {
|
||
|
margin-top: 2rem;
|
||
|
}
|
||
|
|
||
|
.video-logos {
|
||
|
margin-bottom: 2rem;
|
||
|
}
|
||
|
|
||
|
.podcast-logos > a {
|
||
|
margin: 0.75rem 0;
|
||
|
}
|
||
|
|
||
|
.podcast-logos > a,
|
||
|
.podcast-logos > a:hover {
|
||
|
text-decoration: none !important;
|
||
|
box-shadow: none !important;
|
||
|
}
|
||
|
|
||
|
.podcast-logos > a > img {
|
||
|
width: auto !important;
|
||
|
margin: 0 0.75rem;
|
||
|
max-width: 120px;
|
||
|
height: 3rem;
|
||
|
}
|
||
|
|
||
|
@media (prefers-color-scheme: dark) {
|
||
|
.logo {
|
||
|
content: var(--dark-image);
|
||
|
background-color: #191b1f;
|
||
|
display: block;
|
||
|
-moz-box-sizing: border-box;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
}
|