LeaVerou / LeaVerou/css3patterns
Pattern update with modern CSS
Open
Nobody has claimed this yet.
- Dominant language
- HTML
- Stars
- 1.5k
- Forks
- 256
- PR merge metrics
- No merged PRs in 30d
Description
Pyramid
Can be updated to:
--d: 20px;
background: conic-gradient(from 45deg, #561a16 25%, #6a201b 0% 50%, #a7332b 0% 75%, #d45d55 0%);
background-size: var(--d) var(--d)
Checkerboard
Can be updated to:
--d: 60px;
background: repeating-conic-gradient(#000 0% 25%, #eee 0% 50%);
background-size: var(--d) var(--d)
Diagonal checkerboard
Can be updated to:
--d: 60px;
background: repeating-conic-gradient(from 45deg, #000 0% 25%, #eee 0% 50%);
background-size: var(--d) var(--d)
Half-rombes
Can be updated to:
--w: 15px;
background: repeating-conic-gradient(from 30deg, #d6e0f5 0% 60deg, #36c 0% 120deg);
background-size: var(--w) calc(var(--w)*tan(60deg))
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by locating the Pyramid, Checkerboard, Diagonal checkerboard, and Half-rombes pattern definitions in the repository. Compare each definition with the CSS shown in the issue, then verify that all four patterns render correctly and retain their intended appearance after the update.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- css
- Domain
- design, frontend
- Issue type
- Refactor
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100