Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

58 righe
880 B

  1. <template>
  2. <div class="masonry text-white">
  3. <figure v-for="file in files">
  4. <img :src="'https://files.erudi.fr/screenshit/' + file">
  5. </figure>
  6. </div>
  7. </template>
  8. <script setup>
  9. const { data: files } = await useFetch('/api/screenshit')
  10. </script>
  11. <style>
  12. body {
  13. background-color: #000;
  14. font: 1.1em Arial, Helvetica, sans-serif;
  15. }
  16. img {
  17. max-width: 100%;
  18. display: block;
  19. }
  20. figure {
  21. margin: 0;
  22. display: grid;
  23. grid-template-rows: 1fr auto;
  24. }
  25. figure>img {
  26. grid-row: 1 / -1;
  27. grid-column: 1;
  28. }
  29. figure a {
  30. color: black;
  31. text-decoration: none;
  32. }
  33. figcaption {
  34. grid-row: 2;
  35. grid-column: 1;
  36. background-color: rgba(255, 255, 255, .5);
  37. padding: .2em .5em;
  38. justify-self: start;
  39. }
  40. .masonry {
  41. display: grid;
  42. grid-template-columns: repeat(4, 1fr);
  43. grid-auto-flow: dense;
  44. gap: 10px;
  45. }
  46. .landscape {
  47. grid-column-end: span 2;
  48. }
  49. </style>