Skip to content

Commit

Permalink
Merge pull request #2 from dangunter/main
Browse files Browse the repository at this point in the history
Add some very very basic CSS
  • Loading branch information
dangunter authored Oct 10, 2024
2 parents d04bc38 + 72cbd10 commit 0bf98b5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
5 changes: 4 additions & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,17 @@
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<div class="content">
<h1>{{ page.title }}</h1>
<section>
{{ content }}
</section>
</div>
<footer>
&copy; IDAES project
&copy; 2024 The IDAES Project
</footer>
</body>
</html>
7 changes: 7 additions & 0 deletions assets/css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
body {
font-family: "Karla", sans-serif;
}
body > div {
margin: 20px;
}

0 comments on commit 0bf98b5

Please sign in to comment.