From 25a4a2f5cd979b10c95fa4da93bda1b8871a8090 Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Mon, 26 May 2025 09:23:38 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=84=20docs:=20Update=20readme=20task?= =?UTF-8?q?=20board=20URL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- public/stylesheets/style.css | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 417acf6..4d2fe2a 100644 --- a/README.md +++ b/README.md @@ -13,4 +13,4 @@ $env:DEBUG='playwright-a11y-dashboard:*'; npm start ## Notes, issues, and tasks - [Initial Project Outline](Outline.md) -- [Project Task Board](https://git.keithsolomon.net/keith/Playwright-A11y-Dashboard/projects/1) +- [Project Task Board](https://git.keithsolomon.net/keith/Playwright-A11y-Dashboard/projects/2) diff --git a/public/stylesheets/style.css b/public/stylesheets/style.css index 86ebdce..cafca68 100644 --- a/public/stylesheets/style.css +++ b/public/stylesheets/style.css @@ -19,6 +19,8 @@ --text-base: 1rem; --text-base--line-height: calc(1.5 / 1); --radius-sm: 0.25rem; + --default-transition-duration: 150ms; + --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); --default-font-family: var(--font-sans); --default-mono-font-family: var(--font-mono); --color-primary: oklch(0.57 0.203362 257.1706); @@ -227,6 +229,12 @@ .w-full { width: 100%; } + .border-collapse { + border-collapse: collapse; + } + .resize { + resize: both; + } .items-center { align-items: center; } @@ -246,6 +254,10 @@ margin-inline-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-x-reverse))); } } + .border { + border-style: var(--tw-border-style); + border-width: 1px; + } .bg-gray-200 { background-color: var(--color-gray-200); } @@ -273,6 +285,18 @@ .text-white { color: var(--color-white); } + .underline { + text-decoration-line: underline; + } + .outline { + outline-style: var(--tw-outline-style); + outline-width: 1px; + } + .transition { + transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, visibility, content-visibility, overlay, pointer-events; + transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); + transition-duration: var(--tw-duration, var(--default-transition-duration)); + } .hover\:text-gray-400 { &:hover { @media (hover: hover) { @@ -394,10 +418,22 @@ hr { inherits: false; initial-value: 0; } +@property --tw-border-style { + syntax: "*"; + inherits: false; + initial-value: solid; +} +@property --tw-outline-style { + syntax: "*"; + inherits: false; + initial-value: solid; +} @layer properties { @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) { *, ::before, ::after, ::backdrop { --tw-space-x-reverse: 0; + --tw-border-style: solid; + --tw-outline-style: solid; } } }