-
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
1 parent
a39d199
commit 787fd12
Showing
11 changed files
with
67 additions
and
62 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
# inflatedchickens | ||
|
||
## usage | ||
|
||
```bash | ||
# install dependencies | ||
bun i | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export default { | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
} | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {} | ||
} | ||
}; |
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" href="flamingChicken.png" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
%sveltekit.head% | ||
</head> | ||
<body data-sveltekit-preload-data="hover"> | ||
<div style="display: contents">%sveltekit.body%</div> | ||
</body> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" href="flamingChicken.png" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
%sveltekit.head% | ||
</head> | ||
<body data-sveltekit-preload-data="hover"> | ||
<div style="display: contents">%sveltekit.body%</div> | ||
</body> | ||
</html> |
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 |
---|---|---|
@@ -1,11 +1,17 @@ | ||
<script lang="ts"> | ||
import type { ActionData } from '$lib/types'; | ||
let { action = $bindable(), deleteself }: { action: ActionData; deleteself: () => void } = $props() | ||
let { action = $bindable(), deleteself }: { action: ActionData; deleteself: () => void } = | ||
$props(); | ||
let actionBackgroundColor = $derived(action.result === 'success' ? 'bg-cresc_green' : 'bg-fail_red'); | ||
let actionBackgroundColor = $derived( | ||
action.result === 'success' ? 'bg-cresc_green' : 'bg-fail_red' | ||
); | ||
</script> | ||
|
||
<button class="{actionBackgroundColor} w-full p-1 rounded border-2 border-outline_gray text-text_white" onclick={deleteself}> | ||
<button | ||
class="{actionBackgroundColor} w-full p-1 rounded border-2 border-outline_gray text-text_white" | ||
onclick={deleteself} | ||
> | ||
{action.type} | ||
</button> |
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 |
---|---|---|
@@ -1,19 +1,19 @@ | ||
export enum actionType { | ||
IntakeTote = 'Intake Tote', | ||
EjectTote = 'Eject Tote', | ||
IntakeBalloon = 'Intake Balloon', | ||
ScoreLow = 'Score Low', | ||
ScoreExternalTote = 'Score External Tote', | ||
ScoreInternalTote = 'Score Internal Tote', | ||
ScoreAnotherRobotsTote = 'Score Another Robots Tote' | ||
IntakeTote = 'Intake Tote', | ||
EjectTote = 'Eject Tote', | ||
IntakeBalloon = 'Intake Balloon', | ||
ScoreLow = 'Score Low', | ||
ScoreExternalTote = 'Score External Tote', | ||
ScoreInternalTote = 'Score Internal Tote', | ||
ScoreAnotherRobotsTote = 'Score Another Robots Tote' | ||
} | ||
|
||
export enum actionResult { | ||
success = 'success', | ||
fail = 'fail' | ||
success = 'success', | ||
fail = 'fail' | ||
} | ||
|
||
export type ActionData = { | ||
type: actionType; | ||
result: actionResult; | ||
} | ||
type: actionType; | ||
result: actionResult; | ||
}; |
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
<script> | ||
let { children } = $props(); | ||
import "../app.css"; | ||
import '../app.css'; | ||
</script> | ||
|
||
{@render children()} | ||
|
||
<style lang="postcss"> | ||
:global(body) { | ||
@apply bg-bg_gray; | ||
@apply bg-bg_gray; | ||
} | ||
</style> | ||
|
||
{@render children()} |
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 |
---|---|---|
@@ -1,8 +1,4 @@ | ||
<div class="flex flex-col items-center justify-evenly h-dvh text-text_white"> | ||
<h1 class="text-center text-5xl font-bold"> | ||
hiiii :3 | ||
</h1> | ||
<a class="text-center text-2xl rounded bg-btn_grey px-4 py-2 font-bold" href="/scout"> | ||
scout | ||
</a> | ||
<h1 class="text-center text-5xl font-bold">hiiii :3</h1> | ||
<a class="text-center text-2xl rounded bg-btn_grey px-4 py-2 font-bold" href="/scout"> scout </a> | ||
</div> |
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 |
---|---|---|
@@ -1,20 +1,20 @@ | ||
/** @type {import('tailwindcss').Config} */ | ||
export default { | ||
content: ['./src/**/*.{html,js,svelte,ts}'], | ||
theme: { | ||
colors: { | ||
"navbar_black": "#1c1c1c", | ||
"outline_gray": "#c2c2c2", | ||
"cresc_green": "#00d586", | ||
"bg_gray": "#2c2c2c", | ||
"slack_purple": "#4A154B", | ||
"robot_blue": "#0083E6", | ||
"robot_red": "#ED1C24", | ||
"fail_red": "#EE3C42", | ||
"btn_grey": "#5C5C5C", | ||
"text_white": "#ffffff" | ||
}, | ||
extend: {}, | ||
}, | ||
plugins: [], | ||
} | ||
content: ['./src/**/*.{html,js,svelte,ts}'], | ||
theme: { | ||
colors: { | ||
navbar_black: '#1c1c1c', | ||
outline_gray: '#c2c2c2', | ||
cresc_green: '#00d586', | ||
bg_gray: '#2c2c2c', | ||
slack_purple: '#4A154B', | ||
robot_blue: '#0083E6', | ||
robot_red: '#ED1C24', | ||
fail_red: '#EE3C42', | ||
btn_grey: '#5C5C5C', | ||
text_white: '#ffffff' | ||
}, | ||
extend: {} | ||
}, | ||
plugins: [] | ||
}; |