javascript-tutorial / javascript-tutorial/en.javascript.info
Page styling
Nobody has claimed this yet.
- Dominant language
- HTML
- Stars
- 25.5k
- Forks
- 4k
- PR merge metrics
- No merged PRs in 30d
Description
First off: 100 and 1 thanks for the awesome work.
Some thoughts on the page rendering.
- Show visited links in a different color.
a. It helps navigation, memory re-calls etc. - Keep site toolbar visible at all times.
a. One have a quick link to the front-page without having to scroll to top.
b. The search is readily available. - Display list items on front page as
block
a. As it is now items overflowing get a quirked rendering by one list item being "appended" to the next column and partially overlay the next item. I.e. like pt 3.2 here:

(I have custom color on visited links in image)
With custom CSS forcing block view:

I use a custom style-sheet with Stylus to fix this but some of it might be worth a thought for general design / options.
a:visited {
color: #955;
}
.frontpage-content .list-sub__item {
display: block;
}
.sitetoolbar {
position: sticky;
top: 0;
}
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 styles for .frontpage-content .list-sub__item, .sitetoolbar, and link states. Review the front-page rendering to verify the requested behavior: visited links have a distinct color, the toolbar remains visible, and list items no longer overlap or flow incorrectly between columns.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- css
- Domain
- design, frontend
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100