-
-
Notifications
You must be signed in to change notification settings - Fork 21
feat: fish initial configuration #1279
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
c02a3d5
isolated fish params
lursz 3f6fb54
working preset construct
lursz 9eb2c4c
added timeout
lursz b3ac58e
new preset values
lursz 0cdd50f
added loading screen
lursz f8539dc
spinner final touches
lursz 5edb664
simplify spinner
lursz 5567a6f
timer now includes loading time
lursz aa6070c
finalised presets
lursz 518435b
moved spinner to another project
lursz d011454
preset working on reset button
lursz 5195f29
introduced speedMultiplier
lursz 224f805
biome
lursz a3cf543
shortened the names
lursz 412ab39
timeout function fixes
lursz a2a72e8
removed type names from
lursz 7f2f745
removed leftover debug
lursz 3303cd6
biome
lursz 35297a7
child element
lursz cddfa29
buffer write
lursz 5ecb9f7
biome
lursz 7617b9b
std.cosh revert
lursz 4762ed0
biome
lursz 3897691
camelCase
lursz f4cc309
PR fixes
lursz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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
aleksanderkatan marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,68 @@ | ||
@property --p { | ||
syntax: '<number>'; | ||
initial-value: 0; | ||
inherits: true; | ||
} | ||
|
||
@property --q { | ||
syntax: '<number>'; | ||
initial-value: 0; | ||
inherits: true; | ||
} | ||
|
||
.spinner { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
width: 2.5rem; | ||
height: 2.5rem; | ||
border-radius: 50%; | ||
z-index: 5; | ||
display: grid; | ||
place-self: center; | ||
transform: translate(-50%, -50%) rotate(calc(var(--p) * 1turn)); | ||
background: conic-gradient( | ||
transparent calc(var(--p) * 100%), | ||
var(--color-gradient-purple) calc(var(--p) * 100%), | ||
var(--color-gradient-blue) calc(var(--q) * 100%), | ||
transparent calc(var(--q) * 100%) | ||
); | ||
--mask-spinner: radial-gradient( | ||
closest-side, | ||
transparent calc(100% - 0.5rem), | ||
#000 calc(100% - 0.5rem + 1px) | ||
); | ||
-webkit-mask: var(--mask-spinner); | ||
mask: var(--mask-spinner); | ||
animation: | ||
p_anim 2s infinite cubic-bezier(0.32, 0, 0.68, 0), | ||
q_anim 2s infinite cubic-bezier(0.32, 1, 0.68, 1); | ||
} | ||
|
||
.spinner::before, | ||
.spinner::after { | ||
border-radius: 50%; | ||
place-self: center; | ||
transform: rotate(calc(var(--a, var(--p)) * 1turn)) translateY(-1rem); | ||
} | ||
|
||
.spinner::before { | ||
background: var(--color-gradient-purple); | ||
} | ||
|
||
.spinner::after { | ||
background: var(--color-gradient-blue); | ||
--a: var(--q); | ||
} | ||
|
||
@keyframes p_anim { | ||
to { | ||
--p: 1; | ||
} | ||
} | ||
|
||
@keyframes q_anim { | ||
to { | ||
--q: 1; | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.