This commit is contained in:
typicode
2017-03-16 00:43:08 +01:00
parent 76c9e494e1
commit 98e75f4bee
2 changed files with 13 additions and 22 deletions

View File

@ -16,17 +16,16 @@
</header> </header>
<main> <main>
<div class="container"> <div class="container">
<h4>Congrats!</h4>
<p> <p>
<strong>Congrats!</strong><br> You're successfully running JSON Server<br>
You're successfully running JSON Server 😄 ✧*。٩(ˊᗜˋ*)و✧*。
</p> </p>
<div id="resources"></div> <div id="resources"></div>
<p> <p>
<em> To access and modify resources, you can use any HTTP method
To access and modify resources, you can use any HTTP method
</em>
<br> <br>
<code>GET</code> <code>GET</code>
<code>POST</code> <code>POST</code>
@ -37,20 +36,14 @@
</p> </p>
<div id="custom-routes"></div> <div id="custom-routes"></div>
<!-- <h4>Extra</h4>
<p>
<br>
</p> -->
</div> </div>
</main> </main>
<footer> <footer>
<div class="container"> <div class="container">
<p> <p>
<em>To replace this page, create a <code>./public</code> directory with an To replace this page, create a <code>./public</code> directory with an
<code>index.html</code> file in it</em>. <code>index.html</code> file in it.
</p> </p>
</div> </div>
</footer> </footer>

View File

@ -9,6 +9,7 @@ body {
padding:0; padding:0;
margin: 0; margin: 0;
color: #333; color: #333;
letter-spacing: 0;
} }
header { header {
@ -16,13 +17,12 @@ header {
border-bottom: 1px solid #EEE; border-bottom: 1px solid #EEE;
} }
header a { header a, header a:hover {
color: inherit; text-decoration: none;
} }
main { main {
flex: 1; flex: 1;
padding-top: 4rem;
} }
footer { footer {
@ -32,7 +32,6 @@ footer {
h4 { h4 {
margin-top: 4rem; margin-top: 4rem;
letter-spacing: 0;
} }
a { a {
@ -59,11 +58,6 @@ td:first-child {
white-space: nowrap; white-space: nowrap;
} }
img {
padding-top: 50px;
padding-bottom: 20px;
}
ul { ul {
list-style-position: inside; list-style-position: inside;
padding-left: 0; padding-left: 0;
@ -73,3 +67,7 @@ li {
list-style-type: none; list-style-type: none;
margin-bottom: .2rem; margin-bottom: .2rem;
} }
code {
border-radius: 0;
}