Skip to content

Commit

Permalink
fix: styling
Browse files Browse the repository at this point in the history
+ external CSS
- inlince CSS
  • Loading branch information
makindajack committed Oct 22, 2023
1 parent 0b22f0f commit ca42399
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 9 deletions.
13 changes: 4 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,17 @@
title: ""
---

<style>
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap');
body {
font-family: 'JetBrains Mono', monospace;
}
</style>
<link rel="stylesheet" type="text/css" href="./css/style.css">

<img src="./img/banner/header.png" style="width: 100%;">
<img src="./img/banner/header.png" class="banner">

<br>

Your assistance in expanding our project repository is _greatly_ appreciated. We encourage your contribution through **Pull Requests** to include additional projects. We kindly request that you review and adhere to our comprehensive [contribution guidelines](https://github.com/Tanzania-Developers-Community/made-in-tanzania/blob/main/contributing.md) to ensure a _smooth_ integration process.

If you prefer not to initiate Pull Requests but would like to engage with us, you are welcome to reach out via 𝕏 by mentioning [@AlphaOlomi](https://twitter.com/AlphaOlomi). Your support and collaboration are invaluable to us. Thank you for your involvement in enhancing our project repository.

<p align="center" style="font-size: 1.2em; display: flex; justify-content: center; align-items: center; gap: 1em; margin: 0 20px;">
<p align="center" class="nav-menu">
<a href="#A"><strong>A</strong></a>
<a href="#B"><strong>B</strong></a>
<a href="#C"><strong>C</strong></a>
Expand Down Expand Up @@ -99,4 +94,4 @@ If you prefer not to initiate Pull Requests but would like to engage with us, yo
<br>
<br>

<img src="./img/banner/footer.png" style="width: 100%;">
<img src="./img/banner/footer.png" class="banner">
18 changes: 18 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap");

:root {
font-family: "JetBrains Mono", monospace;
}

.banner {
width: 100%;
}

.nav-menu {
font-size: 1.2em;
display: flex;
justify-content: center;
align-items: center;
gap: 1em;
margin: 0 20px;
}

0 comments on commit ca42399

Please sign in to comment.