2022-09-06 19:26:43 -04:00
|
|
|
import {css} from './lit-all.min.js';
|
|
|
|
|
|
|
|
export let styles = css`
|
|
|
|
a:link {
|
|
|
|
color: #bbf;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
|
|
|
color: #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: #ddf;
|
|
|
|
}
|
2022-09-14 19:33:57 -04:00
|
|
|
|
|
|
|
img {
|
2022-10-04 22:11:46 -04:00
|
|
|
max-width: min(640px, 100%);
|
|
|
|
max-height: min(480px, auto);
|
2022-09-14 19:33:57 -04:00
|
|
|
}
|
2022-11-16 19:56:09 -05:00
|
|
|
|
|
|
|
.tab {
|
|
|
|
border: 0;
|
|
|
|
padding: 8px;
|
|
|
|
margin: 0px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab:disabled {
|
|
|
|
color: #088;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
2023-01-29 20:45:23 -05:00
|
|
|
|
|
|
|
.content_warning {
|
|
|
|
border: 1px solid #fff;
|
|
|
|
border-radius: 1em;
|
|
|
|
padding: 8px;
|
|
|
|
margin: 4px;
|
|
|
|
}
|
2023-04-12 20:03:22 -04:00
|
|
|
|
|
|
|
div.img_caption {
|
|
|
|
color: #888;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.img_caption::after {
|
|
|
|
content: ' ±';
|
|
|
|
}
|
2023-08-25 13:06:32 -04:00
|
|
|
|
|
|
|
blockquote {
|
|
|
|
border-left: 4px solid #fff;
|
|
|
|
margin-left: 8px;
|
|
|
|
padding-left: 8px;
|
|
|
|
}
|
2022-09-06 19:26:43 -04:00
|
|
|
`;
|