Browser extension that demonstrates the Web Annotation Discovery mechanism: subscribe to people’s annotation collections/‘feeds’, to see their notes on the web; and create & publish annotations yourself.

web-annotation-discovery-we.../src/components/ AnnotationsList.module.scss
23 lines
368 B

  1. .annotationList {
  2. padding: unset;
  3. list-style: none;
  4. .annotationWrapper {
  5. margin: 1em 0 3em 0;
  6. }
  7. .viewAsJson {
  8. font-size: smaller;
  9. }
  10. .annotationBody {
  11. max-width: 300px;
  12. border: #999 1px solid;
  13. border-radius: 10px;
  14. box-shadow: 10px 10px 10px #9996;
  15. margin: 10px 0;
  16. padding: 10px;
  17. background-color: lightyellow;
  18. }
  19. }