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
{ | |
"clientName": "Thunder Client", | |
"collectionName": "DummyJSON API", | |
"collectionId": "193db17a-7a2c-4d60-b975-56eb254bad93", | |
"dateExported": "2025-07-14T19:06:22.745Z", | |
"version": "1.2", | |
"folders": [], | |
"requests": [ | |
{ | |
"_id": "4bb48847-62b7-4ae9-a433-bbd1f9cd4192", |
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
@layer components { | |
.Product { | |
--padding: 8px; | |
--round: 4px; | |
--border-weight: 0.5px; | |
--gap: 12px; | |
--color: 200, 15%, 42%; | |
--border-color: hsla(var(--color), 0.3); | |
--background-color: color-mix(in srgb, hsl(var(--color)) 2%, white 100%); |
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
[ | |
{ | |
"id": "avatar-1", | |
"filename": "man-01", | |
"ext": "jpg", | |
"name": "λ°μ±μ€", | |
"isOnline": false | |
}, | |
{ | |
"id": "avatar-2", |
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
<form method="get" action="/search"> | |
<img src="search.png" alt="λ보기"> | |
<br> | |
<label> | |
κ²μμ΄ | |
<input name="term" type="search"> | |
</label> | |
<button type="submit">κ²μ</button> | |
</form> |
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
:root { | |
--primary-rgb: 8, 126, 164; | |
--primary-rgba: var(--primary-rgb), 1; | |
--forground-rgb: 10, 24, 48; | |
--forground-rgba: var(--forground-rgb), 1; | |
--background-rgb: 200, 245, 255; | |
--background-rgba: var(--background-rgb), 0.3; | |
--inner-space: 8px 16px; | |
--spacing: 4px; | |
--rounded: 4px; |
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 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
import { readFile, writeFile } from 'node:fs/promises'; | |
import { existsSync, mkdirSync } from 'node:fs'; | |
import { resolve } from 'node:path'; | |
import { argv } from 'node:process'; | |
const { cssDir, entryFile, outDir, outFile } = parseOptions(); | |
const CSS_DIR = cssDir ?? 'src'; | |
const ENTRY_FILE = entryFile ?? 'main.css'; | |
const OUTPUT_DIR = outDir ?? 'styles'; |
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
@use "sass:meta" as *; | |
@use "sass:list"; | |
@use "sass:string"; | |
@function get-value($props, $key) { | |
$index: list.index($props, $key); | |
@if $index != null { | |
$value: list.nth($props, $index + 1); | |
@return if(type-of($value) != string, $value, string.unquote($value)); | |
} @else { |
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
/* eslint-disable no-useless-escape */ | |
/* -------------------------------------------------------------------------- */ | |
// μμ΄λ μ²΄ν¬ μ νΈλ¦¬ν° | |
// βΈ 5 ~ 20μ β μλ¬Έ, μ«μ μ‘°ν© | |
/* -------------------------------------------------------------------------- */ | |
export const isId = (value, { min = 4, max = 19 } = {}) => { | |
const regExp = new RegExp(`^[a-z]+[a-z0-9]{${min},${max}}$`, 'g'); | |
return regExp.test(value); |
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
/* -------------------------------------------------------------------------- */ | |
/* FOCUSABLE (tabindex="-1" ν¬ν¨) */ | |
/* -------------------------------------------------------------------------- */ | |
const focusableSelector = ` | |
a[href], | |
area[href], | |
button, | |
input, | |
select, |
NewerOlder