diff --git a/public/style.css b/public/style.css index 948ac16..f40d067 100644 --- a/public/style.css +++ b/public/style.css @@ -1,8 +1,8 @@ body { - font-family: 'Roboto', sans-serif; + font-family: Arial, sans-serif; font-size: 16px; color: #222; - background-color: #fafafa; + background-color: #fff; text-align: center; line-height: 1.4em; } @@ -26,15 +26,17 @@ h3 { max-width: 700px; margin: 15px auto; } + code { font-family: monospace; padding: 2px; - color: black; - background-color: #fff; + background-color: #eeeef0; } + ol { list-style-position: inside; } + ul { list-style-type: none; } @@ -42,6 +44,7 @@ ul { li { margin-bottom: 0.5em; } + .user-stories li { margin-bottom: 1em; } diff --git a/views/index.html b/views/index.html index a219a3f..901de04 100644 --- a/views/index.html +++ b/views/index.html @@ -8,7 +8,6 @@ href="https://cdn.hyperdev.com/us-east-1%3A52a203ff-088b-420f-81be-45bf559d01b1%2Ffavicon.ico" type="image/x-icon" /> - @@ -18,9 +17,9 @@

User Story:

  1. - I can POST a URL to [project_url]/api/shorturl/new and I will receive a shortened URL in the JSON + I can POST a URL to [project_url]/api/shorturl/new and I will receive a shortened URL in the JSON response.
    - Example : { "original_url": "www.google.com", "short_url": 1 } + Example: { "original_url": "www.google.com", "short_url": 1 }
  2. If I pass an invalid URL that doesn't follow the http(s)://www.example.com(/more/routes) format, @@ -32,7 +31,7 @@

Short URL Creation

-

example: POST [project_url]/api/shorturl/new - https://www.google.com

+

Example: POST [project_url]/api/shorturl/new - https://www.google.com

@@ -45,7 +44,7 @@

https://forum.freecodecamp.org/