index.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Hack or Di(y|e) 2022</title>
  6. </head>
  7. <body>
  8. <style>
  9. * {
  10. box-sizing: border-box;
  11. font-family: 'Lobster', cursive;
  12. }
  13. main {
  14. width: 100%;
  15. display: flex;
  16. flex-direction: row;
  17. justify-content: center;
  18. }
  19. main iframe {
  20. width: 70%;
  21. }
  22. #risposte {
  23. padding: 20px;
  24. display: flex;
  25. flex-direction: column;
  26. background: #eee;
  27. border-radius: 5px;
  28. }
  29. #risposte .risposta {
  30. margin: 0 auto;
  31. }
  32. @media only screen and (min-width: 600px) {
  33. }
  34. </style>
  35. <header>
  36. <h1>Accordai</h1>
  37. </header>
  38. <main>
  39. <iframe src="https://live.autistici.org/hod8" frameborder="0"></iframe>
  40. <div id="chat">
  41. <input type="text" placeholder="prova">
  42. <div id="risposte">
  43. <div class="risposta">
  44. </div>
  45. </div>
  46. </div>
  47. </main>
  48. </body>
  49. </html>