Compare commits
No commits in common. "bb1ff382feb301a8aa9798c4672adbdea6cc438d" and "f367e4b7825918935b3b195a4306575db581336e" have entirely different histories.
bb1ff382fe
...
f367e4b782
3 changed files with 5 additions and 18 deletions
|
@ -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. -->
|
|
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -1,6 +0,0 @@
|
||||||
# IDE stuff
|
|
||||||
.idea
|
|
||||||
|
|
||||||
# All files in the fonts directory except the README
|
|
||||||
fonts/*
|
|
||||||
!fonts/README.md
|
|
|
@ -4,7 +4,8 @@
|
||||||
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;
|
||||||
|
@ -34,7 +35,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);
|
||||||
|
@ -108,7 +109,7 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="text"] {
|
input[type="text"] {
|
||||||
font-family: inherit;
|
font-family: 'Departure Mono';
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
line-height: 1.35;
|
line-height: 1.35;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -166,7 +167,7 @@ input[type="text"]:focus {
|
||||||
|
|
||||||
/* Buttons */
|
/* Buttons */
|
||||||
button {
|
button {
|
||||||
font-family: inherit;
|
font-family: 'Departure Mono';
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
line-height: 1.35;
|
line-height: 1.35;
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
|
|
Loading…
Add table
Reference in a new issue