hod8-chatstream/client/index.html
2022-11-04 15:02:02 +01:00

58 lines
No EOL
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hack or Di(y|e) 2022</title>
</head>
<body>
<style>
* {
box-sizing: border-box;
font-family: 'Lobster', cursive;
}
main {
width: 100%;
display: flex;
flex-direction: row;
justify-content: center;
}
main iframe {
width: 70%;
}
#risposte {
padding: 20px;
display: flex;
flex-direction: column;
background: #eee;
border-radius: 5px;
}
#risposte .risposta {
margin: 0 auto;
}
@media only screen and (min-width: 600px) {
}
</style>
<header>
<h1>Accordai</h1>
</header>
<main>
<iframe src="https://live.autistici.org/hod8" frameborder="0"></iframe>
<div id="chat">
<input type="text" placeholder="prova">
<div id="risposte">
<div class="risposta">
</div>
</div>
</div>
</main>
</body>
</html>