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 {
|
|
|
|
max-width: 640px;
|
|
|
|
max-height: 480px;
|
|
|
|
}
|
2022-09-06 23:26:43 +00:00
|
|
|
`;
|