19 lines
370 B
CSS
19 lines
370 B
CSS
|
|
/* =============== Detail Bar =============== */
|
||
|
|
|
||
|
|
/* ======= PLAY BUTTON ======= */
|
||
|
|
|
||
|
|
/* Re-stylize button to be round */
|
||
|
|
#slides-container .play-button {
|
||
|
|
border-radius: 50%;
|
||
|
|
padding: 25px !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Resize play icon inside button */
|
||
|
|
.play-button::before {
|
||
|
|
font-size: 35px !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Hide text in play button */
|
||
|
|
.play-text {
|
||
|
|
display: none;
|
||
|
|
}
|