searchwidget.astro 520 B

12345678910111213141516171819202122232425262728
  1. ---
  2. import Win98Window from "./win98window.astro";
  3. ---
  4. <Win98Window
  5. title="SimoSearch"
  6. layout={{
  7. mobile: { left: '5%', top: '12%', width: '0%', height: '0%' },
  8. desktop: { left: '62%', top: '10%', width: '35%', height: 'auto' }
  9. }}
  10. >
  11. <iframe
  12. title="search.simo.ng"
  13. src="https://search.simo.ng/#embed"
  14. loading="lazy"
  15. referrerpolicy="no-referrer"
  16. allowfullscreen
  17. />
  18. </Win98Window>
  19. <style>
  20. iframe {
  21. display: block;
  22. width: 100%;
  23. height: 100%;
  24. border: 0;
  25. }
  26. </style>