Mobile Optimization #8

Merged
revengeday merged 8 commits from kaiserkiwi/cyber-circle-creator:mobile-optimization into main 2024-11-17 13:40:11 +00:00
3 changed files with 18 additions and 5 deletions
Showing only changes of commit bb1ff382fe - Show all commits

View file

@ -0,0 +1,8 @@
## 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 Normal file
View file

@ -0,0 +1,6 @@
# IDE stuff
.idea
# All files in the fonts directory except the README
fonts/*
!fonts/README.md

View file

@ -4,8 +4,7 @@
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;
@ -35,7 +34,7 @@
} }
body { body {
font-family: 'Departure Mono'; font-family: 'Departure Mono', monospace;
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);
@ -109,7 +108,7 @@ main {
} }
input[type="text"] { input[type="text"] {
font-family: 'Departure Mono'; font-family: inherit;
font-size: inherit; font-size: inherit;
line-height: 1.35; line-height: 1.35;
width: 100%; width: 100%;
@ -167,7 +166,7 @@ input[type="text"]:focus {
/* Buttons */ /* Buttons */
button { button {
font-family: 'Departure Mono'; font-family: inherit;
font-size: inherit; font-size: inherit;
line-height: 1.35; line-height: 1.35;
padding: 10px 20px; padding: 10px 20px;