diff --git a/.gitea/PULL_REQUEST_TEMPLATE.md b/.gitea/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..d10ec82 --- /dev/null +++ b/.gitea/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,8 @@ +## Description + + +## How to test + + +## Related issues + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..84eaaf6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +# IDE stuff +.idea + +# All files in the fonts directory except the README +fonts/* +!fonts/README.md diff --git a/css/style.css b/css/style.css index ca4f094..111c13f 100644 --- a/css/style.css +++ b/css/style.css @@ -4,8 +4,7 @@ For more information, please refer to the README.md file located in the 'fonts' directory. */ font-family: 'Departure Mono'; - src: url('../fonts/DepartureMono-Regular.woff2') format('woff2'), - url('../fonts/DepartureMono-Regular.woff') format('woff'); + src: url('../fonts/DepartureMono-Regular.woff2') format('woff2'); font-weight: normal; font-style: normal; font-display: swap; @@ -35,7 +34,7 @@ } body { - font-family: 'Departure Mono'; + font-family: 'Departure Mono', monospace; font-size: 18px; line-height: 1.75; background-color: var(--cyber-bg-color); @@ -109,7 +108,7 @@ main { } input[type="text"] { - font-family: 'Departure Mono'; + font-family: inherit; font-size: inherit; line-height: 1.35; width: 100%; @@ -167,7 +166,7 @@ input[type="text"]:focus { /* Buttons */ button { - font-family: 'Departure Mono'; + font-family: inherit; font-size: inherit; line-height: 1.35; padding: 10px 20px;