-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
1,848 additions
and
446 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Simple workflow for deploying static content to GitHub Pages | ||
name: Deploy static content to Pages | ||
|
||
on: | ||
# Runs on pushes targeting the default branch | ||
push: | ||
branches: ['master'] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# Sets the GITHUB_TOKEN permissions to allow deployment to GitHub Pages | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
# Allow one concurrent deployment | ||
concurrency: | ||
group: 'pages' | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
# Single deploy job since we're just deploying | ||
deploy: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Pages | ||
uses: actions/configure-pages@v3 | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v2 | ||
with: | ||
# Upload dist repository | ||
path: './dist' | ||
|
||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
.display-data__line { | ||
display: flex; | ||
align-items: center; | ||
margin-bottom: 8px; | ||
gap: 10px; | ||
flex-flow: wrap; | ||
} | ||
|
||
.display-data__line-title { | ||
border: 1px solid var(--tg-theme-accent-text-color); | ||
background-color: var(--tg-theme-bg-color); | ||
border-radius: 5px; | ||
padding: 2px 8px 4px; | ||
box-sizing: border-box; | ||
} | ||
|
||
.display-data__line-value { | ||
word-break: break-word; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
.index-page__links { | ||
list-style: none; | ||
padding-left: 0; | ||
} | ||
|
||
.index-page__link { | ||
font-weight: bold; | ||
display: inline-flex; | ||
gap: 5px; | ||
} | ||
|
||
.index-page__link-item + .index-page__link-item { | ||
margin-top: 10px; | ||
} | ||
|
||
.index-page__link-icon { | ||
width: 20px; | ||
display: block; | ||
} | ||
|
||
.index-page__link-icon svg { | ||
display: block; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
body { | ||
font-family: -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', | ||
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', | ||
sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
line-height: 1.5; | ||
|
||
background: var(--tg-theme-secondary-bg-color, white); | ||
color: var(--tg-theme-text-color, black); | ||
} | ||
|
||
blockquote { | ||
margin: 0; | ||
} | ||
|
||
blockquote p { | ||
padding: 15px; | ||
background: #eee; | ||
border-radius: 5px; | ||
} | ||
|
||
pre { | ||
overflow: auto; | ||
} | ||
|
||
h1 { | ||
margin-top: 0.67em; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.init-data-page__section + .init-data-page__section { | ||
margin-top: 12px; | ||
} | ||
|
||
.init-data-page__section-title { | ||
margin-bottom: 4px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.link { | ||
text-decoration: none; | ||
color: var(--tg-theme-link-color); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.page { | ||
padding: 0 10px; | ||
box-sizing: border-box; | ||
} | ||
|
||
.page__disclaimer { | ||
margin-bottom: 16px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.rgb { | ||
display: inline-flex; | ||
align-items: center; | ||
gap: 5px; | ||
} | ||
|
||
.rgb__icon { | ||
width: 18px; | ||
aspect-ratio: 1; | ||
border: 1px solid #555; | ||
border-radius: 50%; | ||
} |
Oops, something went wrong.