Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<head>
<meta charset="utf-8">

<title>GitHub Flow Course</title>
<meta name="description" content="GitHub Flow Course">
<title>GitHub Pull Request Flow Course</title>
<meta name="description" content="GitHub Pull Request Flow Course">
<meta name="author" content="Johannes Kettmann">

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
Expand All @@ -16,7 +16,11 @@
<header class="header">
Header
</header>
<main class="content"></main>
<main class="content">
<section class="section">
Top section
</section>
</main>
<footer class="footer">
Footer
</footer>
Expand Down
16 changes: 13 additions & 3 deletions src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ body {
}

.header {
height: 50px;
height: 49px;
display: flex;
justify-content: center;
align-items: center;
Expand All @@ -20,8 +20,18 @@ body {
}

.content {
min-height: calc(100vh - 100px);
width: 720px;
min-height: calc(100vh - 140px);
width: 760px;
max-width: 100%;
margin: auto;
padding: 20px;
}

.section {
height: 450px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid black;
}