-
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
GitHub Actions Bot
committed
Nov 7, 2024
1 parent
778eb30
commit 45a7708
Showing
2,828 changed files
with
91,196 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
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 @@ | ||
petal-lock.dark.florist |
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,323 @@ | ||
*, | ||
*::before, | ||
*::after { | ||
box-sizing: border-box; | ||
} | ||
|
||
.app { | ||
display: grid; | ||
max-width: 700px; | ||
margin: 40px; | ||
border: 1px solid #ccc; | ||
padding: 20px; | ||
box-shadow: 0 0 100px rgba(0, 0, 0, 0.5); | ||
background-color: #f9f9f9; | ||
border: 2px solid #ccc; | ||
border-radius: 25px; | ||
} | ||
div { | ||
display: flex; | ||
} | ||
label { | ||
display: inline-flex; | ||
} | ||
div, label { | ||
flex-wrap: wrap; | ||
} | ||
|
||
/** Spinner **/ | ||
svg.spinner { | ||
animation: 2s linear infinite svg-animation; | ||
max-width: 100px; | ||
} | ||
@keyframes svg-animation { | ||
0% { transform: rotateZ(0deg); } | ||
100% { transform: rotateZ(360deg) } | ||
} | ||
svg.spinner > circle { | ||
animation: 1.4s ease-in-out infinite both circle-animation; | ||
display: block; | ||
fill: transparent; | ||
stroke: #2f3d4c; | ||
stroke-linecap: round; | ||
stroke-dasharray: 283; | ||
stroke-dashoffset: 280; | ||
stroke-width: 10px; | ||
transform-origin: 50% 50%; | ||
} | ||
@keyframes circle-animation { | ||
0%, | ||
25% { stroke-dashoffset: 280; transform: rotate(0); } | ||
50%, | ||
75% { stroke-dashoffset: 75; transform: rotate(45deg); } | ||
100% { stroke-dashoffset: 280; transform: rotate(360deg); } | ||
} | ||
|
||
.grid-container { | ||
display: grid; | ||
grid-template-columns: auto; | ||
padding: 10px; | ||
} | ||
|
||
.grid-container-bordered { | ||
display: grid; | ||
grid-template-columns: auto; | ||
border: 2px solid #ccc; | ||
border-radius: 25px; | ||
padding: 10px; | ||
} | ||
|
||
.grid-item { | ||
display: flex; | ||
flex-direction: column; | ||
text-align: left; | ||
} | ||
|
||
.grid-item[colSpan] { | ||
grid-column: span 2; | ||
} | ||
|
||
body { | ||
min-height: 100vh; | ||
display: grid; | ||
place-content: center; | ||
background: linear-gradient(to right,#4fabd6, #a36bdb); | ||
background-blend-mode: screen; | ||
margin: 0px; | ||
} | ||
|
||
.petal-lock { | ||
font-size: 48px; | ||
font-weight: bold; | ||
background: linear-gradient(45deg, #710cd7, #198bc1); | ||
justify-content: center; | ||
-webkit-background-clip: text; | ||
background-clip: text; | ||
color: transparent; | ||
} | ||
|
||
.status-red { | ||
font-size: 24px; | ||
text-wrap: balance; | ||
text-align: center; | ||
color: rgb(180, 60, 66); | ||
border: 4px solid rgb(180, 60, 66); | ||
border-radius: 25px; | ||
padding: 20px; | ||
box-shadow: 0 0 20px rgb(180, 60, 66); | ||
margin: 0 0 20px 0; | ||
} | ||
|
||
.status-green { | ||
font-size: 24px; | ||
text-wrap: balance; | ||
text-align: center; | ||
color: #3cb371; | ||
border: 4px solid #3cb371; | ||
border-radius: 25px; | ||
padding: 20px; | ||
box-shadow: 0 0 20px #3cb371; | ||
margin: 0 0 20px 0; | ||
} | ||
|
||
.subdomain-header { | ||
margin: 5px; | ||
font-size: 24px; | ||
text-align: center; | ||
text-wrap: balance; | ||
} | ||
|
||
.paragraph { | ||
margin: 0px; | ||
} | ||
|
||
.dim { | ||
color: gray; | ||
font-size: 12px; | ||
} | ||
|
||
.mt-8 { | ||
margin-top: 2rem; | ||
} | ||
.inline-grid { | ||
display: inline-grid; | ||
gap: 1rem; | ||
grid-template-columns: repeat(3, minmax(0, 1fr)); | ||
margin-bottom: 2rem; | ||
} | ||
|
||
.text-white\/50 { | ||
color: rgb(255 255 255 / 0.5); | ||
} | ||
|
||
.text-white { | ||
color: rgb(255 255 255); | ||
} | ||
|
||
.text-center { | ||
align-items: center; | ||
display: flex; | ||
justify-content: center; | ||
flex-direction: column; | ||
} | ||
|
||
a { | ||
color: inherit; | ||
text-decoration: inherit; | ||
} | ||
|
||
.text-white:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
.button { | ||
background: #710cd7; | ||
border-radius: 5px; | ||
font-weight: bold; | ||
font-family: monospace; | ||
color: white; | ||
padding: 10px; | ||
margin-left: 10px; | ||
text-align: center; | ||
cursor: pointer; | ||
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); | ||
width: 100%; | ||
border: 2px solid #ccc; | ||
} | ||
button:disabled, button[disabled] { | ||
background-color: #cccccc; | ||
background: #999999; | ||
color: #666666; | ||
border-radius: 5px; | ||
border: 2px solid #ccc; | ||
font-weight: bold; | ||
font-family: monospace; | ||
padding: 10px; | ||
margin-left: 10px; | ||
text-align: center; | ||
cursor: pointer; | ||
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
.check { | ||
-webkit-appearance: none; | ||
height: 20px; | ||
width: 20px; | ||
position: relative; | ||
text-align: center; | ||
font-weight: 600; | ||
color: white; | ||
border-radius: 4px; | ||
line-height: 18px; | ||
font-size: small; | ||
border-style: solid; | ||
border-color: gray; | ||
border-width: 1px; | ||
} | ||
.check:checked { | ||
background-color: #0E9700; | ||
} | ||
.check:before { | ||
content: ""; | ||
} | ||
.check:checked:before { | ||
content: "✔"; | ||
} | ||
.check:hover { | ||
cursor: pointer; | ||
opacity: 0.8; | ||
} | ||
|
||
.sub-title { | ||
text-align: center; | ||
color: gray; | ||
margin: 0; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.requirement { | ||
font-size: large; | ||
} | ||
|
||
.form-control { | ||
display: grid; | ||
grid-template-columns: min-content max-content auto; | ||
align-items: center; | ||
gap: 10px; | ||
} | ||
|
||
.error-component { | ||
color: #b43c42; | ||
word-break: break-all; | ||
white-space: break-spaces; | ||
border: 2px solid rgb(180, 60, 66); | ||
border-radius: 5px; | ||
padding: 10px; | ||
} | ||
|
||
.year-selector { | ||
flex: 0 0 auto; | ||
display: flex; | ||
align-items: center; | ||
border-bottom: 1px solid #D5DCE6; | ||
border-radius: 5px; | ||
font-size: 30px; | ||
} | ||
.year-selector-counter { | ||
position: relative; | ||
width: 2em; | ||
height: 1em; | ||
color: #333C48; | ||
text-align: center; | ||
overflow: hidden; | ||
} | ||
|
||
.year-selector-counter-input { | ||
width: 100%; | ||
height: 1em; | ||
margin: 0; | ||
padding: 0; | ||
position: relative; | ||
z-index: 2; | ||
box-shadow: none; | ||
outline: none; | ||
border: none; | ||
color: #333C48; | ||
font-size: 30px; | ||
line-height: 1em; | ||
text-align: center; | ||
} | ||
|
||
.year-selector-button { | ||
height: 1em; | ||
width: 1em; | ||
line-height: 1em; | ||
text-align: center; | ||
color: #fff; | ||
cursor: pointer; | ||
background-color: #710cd7; | ||
display: block; | ||
} | ||
.year-selector-button:hover { | ||
background-color: #90a2b0; | ||
} | ||
.year-selector-button:active { | ||
background-color: #778996; | ||
} | ||
.year-selector-button-decrement { | ||
border-radius: 5px 0 0 5px; | ||
} | ||
.year-selector-button-increment { | ||
border-radius: 0 5px 5px 0; | ||
} | ||
|
||
.extend-dialog { | ||
display: grid; | ||
grid-template-columns: auto; | ||
border: 2px solid #ccc; | ||
border-radius: 25px; | ||
padding: 10px; | ||
padding-bottom: 20px; | ||
margin-top: 20px; | ||
width: 100%; | ||
} |
Binary file not shown.
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,53 @@ | ||
<!DOCTYPE html> | ||
|
||
<head> | ||
<meta charset = 'utf-8'> | ||
<meta name = 'viewport' content = 'width=device-width'> | ||
<link rel = 'stylesheet' href = './css/index.css'> | ||
<link rel = 'shortcut icon' href = 'favicon.svg' type = 'image/x-icon'> | ||
</head> | ||
<body style> | ||
<script type='importmap'> | ||
{ | ||
"imports": { | ||
"preact": "./vendor/preact/preact.module.js", | ||
"preact/jsx-runtime": "./vendor/preact/jsx-runtime/jsxRuntime.module.js", | ||
"preact/hooks": "./vendor/preact/hooks/hooks.module.js", | ||
"@preact/signals": "./vendor/@preact/signals/signals.module.js", | ||
"@preact/signals-core": "./vendor/@preact/signals-core/signals-core.module.js", | ||
"viem": "./vendor/viem/index.js", | ||
"viem/chains": "./vendor/viem/chains/index.js", | ||
"viem/window": "./vendor/viem/window/index.js", | ||
"abitype": "./vendor/abitype/exports/index.js", | ||
"@noble/hashes": "./vendor/@noble/hashes/index.js", | ||
"@noble/hashes/crypto": "./vendor/@noble/hashes/crypto.js", | ||
"@noble/hashes/sha3": "./vendor/@noble/hashes/sha3.js", | ||
"@noble/hashes/utils": "./vendor/@noble/hashes/utils.js", | ||
"@noble/hashes/_assert": "./vendor/@noble/hashes/_assert.js", | ||
"@noble/hashes/sha256": "./vendor/@noble/hashes/sha256.js", | ||
"@noble/hashes/sha512": "./vendor/@noble/hashes/sha512.js", | ||
"@noble/hashes/pbkdf2": "./vendor/@noble/hashes/pbkdf2.js", | ||
"@noble/hashes/hmac": "./vendor/@noble/hashes/hmac.js", | ||
"@noble/hashes/ripemd160": "./vendor/@noble/hashes/ripemd160.js", | ||
"@noble/curves": "./vendor/@noble/curves/index.js", | ||
"@noble/curves/secp256k1": "./vendor/@noble/curves/secp256k1.js", | ||
"@noble/curves/abstract/modular": "./vendor/@noble/curves/abstract/modular.js", | ||
"@noble/curves/abstract/utils": "./vendor/@noble/curves/abstract/utils.js", | ||
"webauthn-p256": "./vendor/webauthn-p256/index.js", | ||
"multiformats": "./vendor/multiformats/index.js", | ||
"multiformats/bases/base32": "./vendor/multiformats/bases/base32.js", | ||
"multiformats/bases/base36": "./vendor/multiformats/bases/base36.js", | ||
"multiformats/bases/base58": "./vendor/multiformats/bases/base58.js", | ||
"multiformats/bases/base64": "./vendor/multiformats/bases/base64.js", | ||
"multiformats/cid": "./vendor/multiformats/cid.js", | ||
"multiformats/hashes/digest": "./vendor/multiformats/hashes/digest.js", | ||
"funtypes": "./vendor/funtypes/index.mjs" | ||
} | ||
} | ||
</script> | ||
|
||
<main>Loading...</main> | ||
|
||
<!-- a workaround for bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1803984 --> | ||
<script async type = 'module'>import './js/index.js'</script> | ||
</body> |
Oops, something went wrong.