2022-09-06 23:26:43 +00: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 23:33:57 +00:00
|
|
|
|
|
|
|
img {
|
2022-10-05 02:11:46 +00:00
|
|
|
max-width: min(640px, 100%);
|
|
|
|
max-height: min(480px, auto);
|
2022-09-14 23:33:57 +00:00
|
|
|
}
|
2022-11-17 00:56:09 +00:00
|
|
|
|
|
|
|
.tab {
|
|
|
|
border: 0;
|
|
|
|
padding: 8px;
|
|
|
|
margin: 0px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab:disabled {
|
|
|
|
color: #088;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
2023-01-30 01:45:23 +00:00
|
|
|
|
|
|
|
.content_warning {
|
|
|
|
border: 1px solid #fff;
|
|
|
|
border-radius: 1em;
|
|
|
|
padding: 8px;
|
|
|
|
margin: 4px;
|
|
|
|
}
|
2023-04-13 00:03:22 +00:00
|
|
|
|
|
|
|
div.img_caption {
|
|
|
|
color: #888;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.img_caption::after {
|
|
|
|
content: ' ±';
|
|
|
|
}
|
2022-09-06 23:26:43 +00:00
|
|
|
`;
|