Skip to content

Commit

Permalink
Remove CSS reset dep
Browse files Browse the repository at this point in the history
  • Loading branch information
achou11 committed Apr 28, 2020
1 parent 23e2542 commit 87928d9
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,22 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="The Single File Philosophy" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/reset.min.css" />
<style>
*,
*::before,
*::after {
box-sizing: border-box;
}

* {
font-family: "Georgia";
}

body {
margin: 0;
min-height: 100vh;
text-rendering: optimizeSpeed;
line-height: 1.5;
font-size: 1.2em;
padding: 1em;
}
Expand Down Expand Up @@ -66,8 +75,6 @@ <h1>The Single File Philosophy</h1>
readable file and nothing more.
</p>

<br />

<p>
Benefits of this approach:
</p>
Expand Down

0 comments on commit 87928d9

Please sign in to comment.