From cf9454caa00872899215603e5e036d9a824b1b11 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sat, 24 Dec 2022 18:37:22 +0200 Subject: Release v5.3.0-alpha1 (#37661) * Bump version to 5.3.0-alpha1 * Dist * Add docs versions updates * Update note in homepage hero Co-authored-by: Mark Otto --- .../docs/5.3/examples/features/features.css | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 site/content/docs/5.3/examples/features/features.css (limited to 'site/content/docs/5.3/examples/features/features.css') diff --git a/site/content/docs/5.3/examples/features/features.css b/site/content/docs/5.3/examples/features/features.css new file mode 100644 index 000000000..b5d658f6b --- /dev/null +++ b/site/content/docs/5.3/examples/features/features.css @@ -0,0 +1,36 @@ +.feature-icon { + width: 4rem; + height: 4rem; + border-radius: .75rem; +} + +.icon-link > .bi { + margin-top: .125rem; + margin-left: .125rem; + fill: currentcolor; + transition: transform .25s ease-in-out; +} +.icon-link:hover > .bi { + transform: translate(.25rem); +} + +.icon-square { + width: 3rem; + height: 3rem; + border-radius: .75rem; +} + +.text-shadow-1 { text-shadow: 0 .125rem .25rem rgba(0, 0, 0, .25); } +.text-shadow-2 { text-shadow: 0 .25rem .5rem rgba(0, 0, 0, .25); } +.text-shadow-3 { text-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .25); } + +.card-cover { + background-repeat: no-repeat; + background-position: center center; + background-size: cover; +} + +.feature-icon-small { + width: 3rem; + height: 3rem; +} -- cgit v1.2.3 From d70b5db2e0aee9ea9a7255d28395278876bf53ba Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 3 Jan 2023 22:23:46 -0800 Subject: Add new link utilities, icon link helper, and update colored link helpers (#37762) * Add new link utilities, update colored link helpers * Remove commented out code * Fixes * Remove examples changes * Fixes and copy * Fix icon-link instances on homepage * Bump bundlewatch * Fix node-sass issue for rgba() function bug * More bundlewatch * One more time after merge * Add callout for a11y * Hover and focus-visible * Add a11y callouts * Remove duplicate for now * More code review feedback --- site/content/docs/5.3/examples/features/features.css | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'site/content/docs/5.3/examples/features/features.css') diff --git a/site/content/docs/5.3/examples/features/features.css b/site/content/docs/5.3/examples/features/features.css index b5d658f6b..debc26364 100644 --- a/site/content/docs/5.3/examples/features/features.css +++ b/site/content/docs/5.3/examples/features/features.css @@ -4,16 +4,6 @@ border-radius: .75rem; } -.icon-link > .bi { - margin-top: .125rem; - margin-left: .125rem; - fill: currentcolor; - transition: transform .25s ease-in-out; -} -.icon-link:hover > .bi { - transform: translate(.25rem); -} - .icon-square { width: 3rem; height: 3rem; -- cgit v1.2.3