88 lines
2.1 KiB
HTML
88 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Exploring MycoFi</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 20px;
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
background-color: white;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.header {
|
|
padding: 20px;
|
|
background-color: #333;
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
.zine-container {
|
|
padding: 20px;
|
|
}
|
|
|
|
.zine-embed {
|
|
position: relative;
|
|
padding-top: max(60%, 324px);
|
|
width: 100%;
|
|
height: 0;
|
|
}
|
|
|
|
.zine-embed iframe {
|
|
position: absolute;
|
|
border: none;
|
|
width: 100%;
|
|
height: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
body {
|
|
padding: 10px;
|
|
}
|
|
|
|
.header {
|
|
padding: 15px;
|
|
}
|
|
|
|
.zine-container {
|
|
padding: 15px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>Exploring MycoFi</h1>
|
|
<p>Mycelial Design Patterns for Web3 & Beyond</p>
|
|
</div>
|
|
|
|
<div class="zine-container">
|
|
<div class="zine-embed">
|
|
<iframe
|
|
src="https://online.fliphtml5.com/phqos/acdx/"
|
|
seamless="seamless"
|
|
scrolling="no"
|
|
frameborder="0"
|
|
allowtransparency="true"
|
|
allowfullscreen="true">
|
|
</iframe>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|