Browse Source

Add header

pull/1/head
Luke Childs 6 years ago
parent
commit
d9ff84f241
  1. 5
      index.html
  2. 9
      style.css

5
index.html

@ -14,6 +14,11 @@
<meta property="twitter:card" content="summary_large_image">
</head>
<body>
<header class="header">
<div class="wrapper">
<h1>How many confirmations are equivalent to 6 Bitcoin confirmations?</h1>
</div>
</header>
<section class="wrapper">
<table class="results"></table>
</section>

9
style.css

@ -11,6 +11,12 @@ body {
box-sizing: content-box;
}
header {
padding: 4em 0;
background: #EEE;
margin-bottom: 2em;
}
table.results {
width: 100%;
border-spacing: 0;
@ -22,9 +28,6 @@ table.results thead {
table.results td {
padding: 0.5em 0;
}
table.results tbody tr td {
border-top: 1px solid #ECECEC;
}

Loading…
Cancel
Save