javascript-tutorial / javascript-tutorial/en.javascript.info
Page styling
未關閉
還沒有人認領這個 Issue。
- 主要語言
- HTML
- 星號
- 25.5k
- 分支
- 4k
- PR 合併指標
- 30 天內沒有已合併 PR
描述
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;
}
貢獻指南
這個儲存庫沒有索引到貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
首先定位 .frontpage-content .list-sub__item、.sitetoolbar 和連結狀態的樣式。檢查首頁的渲染,以驗證所要求的行為:已造訪連結具有不同的色彩,工具列保持可見,而且清單項目不再重疊或在欄位之間錯誤地流動。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- css
- 領域
- design, frontend
- Issue 類型
- 功能
- 難度
- 3/5
- 預估耗時
- 1-2 天
- 活躍度
- 停滯
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100