-
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
15 changed files
with
527 additions
and
412 deletions.
There are no files selected for viewing
1 change: 0 additions & 1 deletion
1
stack--2022/3-advanced--browser/css--foundation/src/elements/element--strong.css
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
1 change: 0 additions & 1 deletion
1
stack--2022/3-advanced--browser/css--foundation/src/elements/elements--h123456.css
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
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
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
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
66 changes: 66 additions & 0 deletions
66
stack--2022/9-rpg/font--comics/src/__shared/use-cases.stories.ts
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,66 @@ | ||
|
||
const STYLE = `max-width: 200px; border: solid 2px black; padding: .3em; xtext-align: center; margin: .5em 0; border-radius: 1em;` | ||
|
||
export function Speech1() { | ||
return ` | ||
<div style="border-radius: 50%; ${STYLE}"> | ||
I haven't been inside the secret room, but I intend to find out what's in there! | ||
</div> | ||
` | ||
} | ||
|
||
export function Speech2() { | ||
return ` | ||
<div style="${STYLE}"> | ||
Oh! It's <strong>encyclopedias</strong>! I was expecting something more <em>exciting</em>. | ||
</div> | ||
` | ||
} | ||
|
||
export function Speech3() { | ||
return ` | ||
<style> | ||
.tight { | ||
letter-spacing: -0.06em; | ||
} | ||
</style> | ||
<div style="${STYLE}"> | ||
That's an <span class="tight">inconsequentially</span> tiny matter of physics, doctor Smith! | ||
</div> | ||
` | ||
} | ||
|
||
export function Speech4() { | ||
return ` | ||
<div style="${STYLE}"> | ||
⚞Guh!⚟ Stop hitting me--⚞OOF!⚟ | ||
</div> | ||
` | ||
} | ||
|
||
export function Speech5() { | ||
return ` | ||
<div style="${STYLE}"> | ||
♫Happy birthday to yooo…♪ | ||
</div> | ||
` | ||
} | ||
|
||
export function Panel() { | ||
return ` | ||
<div style="${STYLE}"> | ||
"<em>Si, Jefe,</em> there are bad men in this town." | ||
</div> | ||
` | ||
} | ||
|
||
export function All() { | ||
return ` | ||
${Speech1()} | ||
${Speech2()} | ||
${Speech3()} | ||
${Speech4()} | ||
${Speech5()} | ||
${Panel()} | ||
` | ||
} |
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
18 changes: 10 additions & 8 deletions
18
stack--2022/9-rpg/font--comics/src/deevad-hand/index.stories.tsx
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,36 +1,38 @@ | ||
import { Normalization as _Norm, DemoꓽAll } from '@offirmo-private/storypad/src/__shared/stories/css/typography/index.stories.ts' | ||
import { All } from '../__shared/use-cases.stories' | ||
|
||
import './index.css' | ||
|
||
import { Normalization as _Norm, DemoꓽAll } from '@offirmo-private/storypad/src/__shared/stories/css/typography/index.stories.ts' | ||
|
||
export function Demoⵧraw() { | ||
export function FontDemoⵧraw() { | ||
return ` | ||
<div class="omr⋄font⁚DeevadHand--raw"> | ||
${DemoꓽAll()} | ||
</div> | ||
` | ||
} | ||
export function DemoⵧCalibrated() { | ||
|
||
export function Calibration() { | ||
return ` | ||
<div class="omr⋄font⁚DeevadHand"> | ||
${DemoꓽAll()} | ||
${_Norm()} | ||
</div> | ||
` | ||
} | ||
|
||
export function Normalization() { | ||
export function FontDemoⵧCalibrated() { | ||
return ` | ||
<div class="omr⋄font⁚DeevadHand"> | ||
${_Norm()} | ||
${DemoꓽAll()} | ||
</div> | ||
` | ||
} | ||
|
||
|
||
export function Calibration() { | ||
export function UseCases() { | ||
return ` | ||
<div class="omr⋄font⁚DeevadHand"> | ||
TODO | ||
${All()} | ||
</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,12 +1,38 @@ | ||
import { Normalization as _Norm, DemoꓽAll } from '@offirmo-private/storypad/src/__shared/stories/css/typography/index.stories.ts' | ||
import { All } from '../__shared/use-cases.stories' | ||
|
||
import './index.css' | ||
|
||
import { DemoꓽAll } from '@offirmo-private/storypad/src/__shared/stories/css/typography/index.stories.ts' | ||
|
||
export function Demo() { | ||
export function FontDemoⵧraw() { | ||
return ` | ||
<div class="omr⋄font⁚TEST"> | ||
${DemoꓽAll()} | ||
</div> | ||
` | ||
} | ||
|
||
export function Calibration() { | ||
return ` | ||
<div class="omr⋄font⁚TEST"> | ||
${_Norm()} | ||
</div> | ||
` | ||
} | ||
|
||
export function FontDemoⵧCalibrated() { | ||
return ` | ||
<div class="omr⋄font⁚TEST"> | ||
${DemoꓽAll()} | ||
</div> | ||
` | ||
} | ||
|
||
|
||
export function UseCases() { | ||
return ` | ||
<div class="omr⋄font⁚TEST"> | ||
${All()} | ||
</div> | ||
` | ||
} |
Oops, something went wrong.