-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
73af123
commit 425a4a4
Showing
3 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
.timeline-container { | ||
border-left: 4px solid gray; | ||
border-radius: 0 4px 4px 0; | ||
background: rgba(200, 200, 200, 0.15); | ||
margin: 2rem auto; | ||
padding: 1rem 2rem; | ||
position: relative; | ||
text-align: center; | ||
margin-left: 7rem; | ||
} | ||
|
||
.timeline-entry { | ||
text-align: left; | ||
position: relative; | ||
padding-bottom: 1rem; | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.timeline-date { | ||
position: absolute; | ||
left: -10rem; | ||
text-align: right; | ||
font-size: 0.9rem; | ||
font-weight: 700; | ||
opacity: 0.7; | ||
min-width: 6rem; | ||
top: 2px; | ||
} | ||
|
||
.timeline-dot { | ||
position: absolute; | ||
box-shadow: 0 0 0 4px gray; | ||
left: -2.5rem; | ||
background: #444; | ||
border-radius: 50%; | ||
height: 11px; | ||
width: 11px; | ||
top: 5px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Timeline | ||
|
||
In reverse chronological order, with most recent events first. | ||
|
||
<!-- markdownlint-disable --> | ||
|
||
<!-- NOTE the styling for this timeline is bundled in mkdocs as timeline.css --> | ||
<!-- Additional emojis: community 🧑🧑🧒🧒 --> | ||
|
||
> <div class="timeline-container"> | ||
> <div class="timeline-entry"> | ||
> <div class="timeline-date">2024-xx</div> | ||
> <h3>Manufacture of Community Mapping Drone</h3> | ||
> 🛠️ ... | ||
> <div class="timeline-dot"></div> | ||
> </div> | ||
> <div class="timeline-entry"> | ||
> <div class="timeline-date">2024-xx</div> | ||
> <h3>Grant Awarded For Development</h3> | ||
> 📝 World Bank project for HOTOSM & NAXA collaboration. | ||
> <div class="timeline-dot"></div> | ||
> </div> | ||
> <div class="timeline-entry"> | ||
> <div class="timeline-date">2024-xx</div> | ||
> <h3>Initial Research & Concept</h3> | ||
> 🔬 [Concept Note][1] written for a 'Drone Tasking Manager'. | ||
> <div class="timeline-dot"></div> | ||
> </div> | ||
> </div> | ||
<!-- markdownlint-restore --> | ||
|
||
[1]: https://link.here.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters