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