36 lines
659 B
CSS
36 lines
659 B
CSS
body {
|
|
background-color: #F8F9FA;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: Georgia, 'Times New Roman', serif;
|
|
}
|
|
|
|
.gradient-bg {
|
|
background: linear-gradient(45deg, #0D6EFD, #6F42C1);
|
|
color: white;
|
|
}
|
|
|
|
.video-container {
|
|
position: relative;
|
|
padding-bottom: 56.25%;
|
|
height: 0;
|
|
overflow: hidden;
|
|
max-width: 100%;
|
|
background: #000;
|
|
border-radius: 0.375rem;
|
|
}
|
|
|
|
.video-container iframe {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.btn-regenerate {
|
|
display: none;
|
|
}
|