diff --git a/README.md b/README.md index fca5444..ca033f2 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Objective : Make a timer in JavaScript ## Installation -- Go to the [Website](https://lucasvbr.github.io/JavascriptTimer/?minutes=5) +- Go to the [Website](https://lucasvbr.github.io/timer/?minutes=5) - To set time, you need to add parameters in the URL : URL syntax : `?[param1]&[param2]&[...]` Parameter syntax : `=` @@ -14,5 +14,5 @@ Objective : Make a timer in JavaScript Example : ```url - https://lucasvbr.github.io/JavascriptTimer/?hours=10&minutes=10&seconds=10 + https://lucasvbr.github.io/timer/?hours=10&minutes=10&seconds=10 ``` diff --git a/css/style.css b/css/style.css index 72af810..b0d3271 100644 --- a/css/style.css +++ b/css/style.css @@ -1,8 +1,21 @@ +/* Reset CSS */ +html { + margin: 0; + padding: 0; + box-sizing: border-box; +} + body { + height: 90vh; background-color: whitesmoke; + + display: grid; + place-content: center; } p { + font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; + font-size: 200px; text-align: center; } \ No newline at end of file diff --git a/index.htm b/index.html similarity index 98% rename from index.htm rename to index.html index c1b4342..1b78d15 100644 --- a/index.htm +++ b/index.html @@ -8,6 +8,7 @@

+