Skip to content

Commit

Permalink
Tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
hakanensari committed Aug 21, 2024
1 parent 92dd6bf commit ff64f06
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/_includes/docker.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
docker run \
-d \
-p 3000:3000 \
-e ACCOUNT_ID=YOUR_MAXMIND_ACCOUNT_ID \
-e LICENSE_KEY=YOUR_MAXMIND_LICENSE_KEY \
hakanensari/country
-d \
-p 3000:3000 \
-e ACCOUNT_ID=YOUR_MAXMIND_ACCOUNT_ID \
-e LICENSE_KEY=YOUR_MAXMIND_LICENSE_KEY \
hakanensari/country
1 change: 1 addition & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
crossorigin="anonymous"
></script>
<script defer src="javascripts/application.js"></script>
<link rel="stylesheet" href="https://fonts.xz.style/serve/inter.css" />
<link rel="stylesheet" href="styles/application.css" />
</head>
<body>
Expand Down
13 changes: 13 additions & 0 deletions docs/styles/application.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
:root {
--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--font-mono: Consolas, monaco, "Ubuntu Mono", "Liberation Mono", "Courier New",
Courier, monospace;

/* Light theme */
--tx-1: #1a1a1a;
--bg-1: #ffffff;
Expand All @@ -23,6 +29,9 @@
--lk-1: var(--d-lk-1);
}
}
html {
font-family: var(--font-sans);
}

body {
background: var(--bg-1);
Expand Down Expand Up @@ -56,6 +65,10 @@ dd {
margin: 0;
}

code {
font-family: var(--font-mono);
}

code,
pre {
background: var(--bg-2);
Expand Down

0 comments on commit ff64f06

Please sign in to comment.