Aggregation of Boston-area public webcam feeds

webcams.css 482B

1234567891011121314151617181920212223242526272829
  1. @import "http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/smoothness/jquery-ui.css";
  2. body {
  3. background: #202020;
  4. }
  5. .title {
  6. text-align:center;
  7. font-family: Sketch;
  8. font-size: 225%;
  9. }
  10. #cambox
  11. {
  12. position: absolute;
  13. top: 0; bottom: 0; left: 0; right: 0;
  14. display: flex;
  15. flex-direction: row;
  16. flex-wrap: wrap;
  17. align-items: flex-start;
  18. align-content: flex-start;
  19. }
  20. #cambox img {
  21. width: auto;
  22. height: auto;
  23. flex-shrink: 4;
  24. }