1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-30 20:49:49 +02:00

Add beginner friendly git and github roadmap

This commit is contained in:
Kamran Ahmed
2024-08-13 00:57:04 +01:00
parent beabbff77f
commit 53d82725d2
7 changed files with 14 additions and 4 deletions

View File

@@ -10,7 +10,8 @@ svg g[data-type='link-item'],
svg > g[data-type='button'], svg > g[data-type='button'],
svg > g[data-type='resourceButton'], svg > g[data-type='resourceButton'],
svg > g[data-type='todo-checkbox'], svg > g[data-type='todo-checkbox'],
svg > g[data-type='todo'] { svg > g[data-type='todo'],
svg > g[data-type='checklist'] > g[data-type='checklist-item'] > rect {
cursor: pointer; cursor: pointer;
} }
@@ -28,6 +29,10 @@ svg g[data-type='todo-checkbox']:hover {
opacity: 0.8; opacity: 0.8;
} }
svg g[data-type='checklist'] > g[data-type='checklist-item'] > rect:hover {
fill: #cbcbcb !important;
}
svg .done rect { svg .done rect {
fill: #cbcbcb !important; fill: #cbcbcb !important;
} }
@@ -46,8 +51,8 @@ svg .done text[fill='#ffffff'] {
fill: black; fill: black;
} }
svg > g[data-type='subtipic'].done > rect + text, svg > g[data-type='subtopic'].done > rect + text,
svg > g[data-type='subtipic'].learning > rect + text { svg > g[data-type='subtopic'].learning > rect + text {
fill: #cbcbcb; fill: #cbcbcb;
} }

View File

@@ -369,7 +369,7 @@ export function TopicDetail(props: TopicDetailProps) {
className="flex w-full items-center justify-center rounded-md bg-gray-800 p-2 text-sm text-white transition-colors hover:bg-black hover:text-white disabled:bg-green-200 disabled:text-black" className="flex w-full items-center justify-center rounded-md bg-gray-800 p-2 text-sm text-white transition-colors hover:bg-black hover:text-white disabled:bg-green-200 disabled:text-black"
> >
<GitHubIcon className="mr-2 inline-block h-4 w-4 text-white" /> <GitHubIcon className="mr-2 inline-block h-4 w-4 text-white" />
Help us Improve this Content Help us Write this Content
</a> </a>
</div> </div>
)} )}

View File

@@ -0,0 +1 @@
# Basic Git Usage

View File

@@ -0,0 +1 @@
# Collaboration

View File

@@ -0,0 +1 @@
# More Git

View File

@@ -0,0 +1 @@
# More GitHub

View File

@@ -389,6 +389,7 @@ export function refreshProgressCounters() {
'.clickable-group', '.clickable-group',
'[data-type="todo"]', '[data-type="todo"]',
'[data-type="topic"]', '[data-type="topic"]',
'[data-type="checklist-item"]',
'[data-type="subtopic"]', '[data-type="subtopic"]',
'.react-flow__node-topic', '.react-flow__node-topic',
'.react-flow__node-subtopic', '.react-flow__node-subtopic',