Skip to content

Commit

Permalink
text update
Browse files Browse the repository at this point in the history
  • Loading branch information
dwightjack committed Dec 12, 2024
1 parent 47320f7 commit 89a0d9f
Showing 1 changed file with 41 additions and 36 deletions.
77 changes: 41 additions & 36 deletions src/index.html
Original file line number Diff line number Diff line change
@@ -1,41 +1,46 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Codeful</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/picnic" />
<script type="module" src="./js/main.mjs"></script>
<style>
body {
background-color: #f6f6f6;
color: #444;
}
.container {
max-inline-size: 980px;
margin-inline: auto;
padding-inline: 2rem;
padding-block-end: 2rem;
}

.cluster {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Codeful</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/picnic" />
<script type="module" src="./js/main.mjs"></script>
<style>
body {
background-color: #f6f6f6;
color: #444;
}

.container {
max-inline-size: 980px;
margin-inline: auto;
padding-inline: 2rem;
padding-block-end: 2rem;
}

.cluster {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}

.cluster>.label {
margin-inline-start: 0;
}

</style>
</head>

<body>
<div class="container">
<header>
<h1>Codeful</h1>
<p>Small apps and experiments by <a href="https://marco.solazzi.me">Marco Solazzi</a>.</p>
</header>
<main id="main"></main>
</div>
</body>

.cluster > .label {
margin-inline-start: 0;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Codeful</h1>
<p>Random small apps and experiments.</p>
</header>
<main id="main"></main>
</div>
</body>
</html>

0 comments on commit 89a0d9f

Please sign in to comment.