You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
834 B
CSS
66 lines
834 B
CSS
<style>
|
|
.slides {
|
|
font-size: 0.75em;
|
|
}
|
|
.reveal ul {
|
|
display: block;
|
|
}
|
|
.reveal ol {
|
|
display: block;
|
|
}
|
|
|
|
img {
|
|
max-height: 350px !important;
|
|
}
|
|
|
|
figcaption {
|
|
font-size: 0.6em !important;
|
|
font-style: italic !important;
|
|
}
|
|
|
|
.subtitle {
|
|
font-style: italic !important;
|
|
}
|
|
|
|
.date {
|
|
font-size: 0.75em !important;
|
|
}
|
|
|
|
p {
|
|
text-align: left;
|
|
}
|
|
|
|
|
|
|
|
.license-footer {
|
|
opacity: 0.6;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
.license-footer:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
.license-icons {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.license-tooltip {
|
|
display: none;
|
|
position: absolute;
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
color: #fff;
|
|
padding: 5px 10px;
|
|
border-radius: 4px;
|
|
font-size: 12px;
|
|
white-space: nowrap;
|
|
top: 100%;
|
|
right: 0;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.license-footer:hover .license-tooltip {
|
|
display: block;
|
|
}
|
|
</style>
|