Compare commits

..

No commits in common. "ac239ee4cd033e103ecee90459e2a5e6dd622b2c" and "6a7cd24fe49cf1428918fb1bfdfcea5518c1fa4b" have entirely different histories.

2 changed files with 7 additions and 14 deletions

View file

@ -1,8 +0,0 @@
## Description
<!-- Describe the changes in this PR. -->
## How to test
<!-- Describe how to test the changes made in this PR. -->
## Related issues
<!-- Mention the issue(s) this PR closes or is related to. -->

View file

@ -1,10 +1,11 @@
@font-face { @font-face {
/* /*
Note: The font files are not included in this repository due to legal restrictions. Note: The font files are not included in this repository due to legal restrictions.
For more information, please refer to the README.md file located in the 'fonts' directory. For more information, please refer to the README.md file located in the 'fonts' directory.
*/ */
font-family: 'Departure Mono'; font-family: 'Departure Mono';
src: url('../fonts/DepartureMono-Regular.woff2') format('woff2'); src: url('../fonts/DepartureMono-Regular.woff2') format('woff2'),
url('../fonts/DepartureMono-Regular.woff') format('woff');
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
font-display: swap; font-display: swap;
@ -29,7 +30,7 @@
} }
body { body {
font-family: 'Departure Mono', monospace; font-family: 'Departure Mono';
font-size: 18px; font-size: 18px;
line-height: 1.75; line-height: 1.75;
background-color: var(--cyber-bg-color); background-color: var(--cyber-bg-color);
@ -98,7 +99,7 @@ main {
} }
input[type="text"] { input[type="text"] {
font-family: inherit; font-family: 'Departure Mono';
width: calc(100% - 20px); width: calc(100% - 20px);
padding: 10px; padding: 10px;
border: 2px solid var(--cyber-primary-color); border: 2px solid var(--cyber-primary-color);
@ -150,7 +151,7 @@ input[type="text"]:focus {
/* Buttons */ /* Buttons */
button { button {
font-family: inherit; font-family: 'Departure Mono';
padding: 10px 20px; padding: 10px 20px;
border-radius: 5px; border-radius: 5px;
background-color: var(--cyber-bg-color); background-color: var(--cyber-bg-color);
@ -539,4 +540,4 @@ a {
a:hover { a:hover {
text-decoration: none; text-decoration: none;
color: var(--cyber-secondary-color); color: var(--cyber-secondary-color);
} }