Skip to content

Commit

Permalink
Fonts.
Browse files Browse the repository at this point in the history
  • Loading branch information
Oglo12 committed Oct 22, 2024
1 parent 0df6d85 commit 4706100
Show file tree
Hide file tree
Showing 15 changed files with 99 additions and 11 deletions.
22 changes: 11 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,35 +38,35 @@ <h1 id="welcome-enjoy-your-stay">Welcome! Enjoy your stay!</h1>
<col style="width: 100%" />
</colgroup>
<thead>
<tr>
<tr class="header">
<th>Links</th>
</tr>
</thead>
<tbody>
<tr>
<tr class="odd">
<td><a href="https://gitlab.com/Oglo12">GitLab Repositories</a></td>
</tr>
<tr>
<tr class="even">
<td><a href="https://codeberg.org/Oglo12">Codeberg Repositories</a></td>
</tr>
<tr>
<tr class="odd">
<td><a href="https://youtube.com/@oglothenerd">YouTube Channel</a></td>
</tr>
<tr>
<tr class="even">
<td><a href="https://odysee.com/@oglothenerd">Odysee Channel</a></td>
</tr>
<tr>
<tr class="odd">
<td><a href="https://www.patreon.com/OgloTheNerd">Patreon
(Donations)</a></td>
</tr>
<tr>
<tr class="even">
<td><a href="https://discord.gg/mBQttEV8SW">Discord Server</a></td>
</tr>
<tr>
<tr class="odd">
<td><a href="https://matrix.to/#/#oglothenerd-room:matrix.org">Matrix
Room</a></td>
</tr>
<tr>
<tr class="even">
<td><a href="https://rvlt.gg/vGqAgh71">Revolt Server</a></td>
</tr>
</tbody>
Expand All @@ -77,13 +77,13 @@ <h1 id="welcome-enjoy-your-stay">Welcome! Enjoy your stay!</h1>
<col style="width: 54%" />
</colgroup>
<thead>
<tr>
<tr class="header">
<th>Tutorials (As Pages On This Site)</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<tr class="odd">
<td><a href="./tutorials/sysrq.html">Save your system with
SysRQ!</a></td>
<td>When your computer freezes, you can still make it reboot
Expand Down
Binary file added per_html/fonts/JetBrainsMonoNerdFont-Bold.ttf
Binary file not shown.
Binary file added per_html/fonts/JetBrainsMonoNerdFont-Italic.ttf
Binary file not shown.
Binary file added per_html/fonts/JetBrainsMonoNerdFont-Medium.ttf
Binary file not shown.
Binary file added per_html/fonts/JetBrainsMonoNerdFontMono-Bold.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
44 changes: 44 additions & 0 deletions per_html/style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,50 @@
@import url('themes/gruvbox_dark.css');

@font-face {
font-family: "NerdFont";
src: url("fonts/JetBrainsMonoNerdFont-Medium.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: "NerdFont";
src: url("fonts/JetBrainsMonoNerdFont-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal;
}

@font-face {
font-family: "NerdFont";
src: url("fonts/JetBrainsMonoNerdFont-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic;
}

@font-face {
font-family: "NerdFontMono";
src: url("fonts/JetBrainsMonoNerdFontMono-Medium.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: "NerdFontMono";
src: url("fonts/JetBrainsMonoNerdFontMono-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal;
}

@font-face {
font-family: "NerdFontMono";
src: url("fonts/JetBrainsMonoNerdFontMono-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic;
}

* {
color: var(--foreground-color);
font-family: "NerdFont";
}

body {
Expand Down Expand Up @@ -43,6 +86,7 @@ code {
background-color: var(--hue-background-color);
color: var(--hue-foreground-color);
font-weight: bold;
font-family: "NerdFontMono";
border-radius: 5px;
padding: 1px 4px 1px 4px;
}
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
44 changes: 44 additions & 0 deletions tutorials/per_html/style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,50 @@
@import url('themes/gruvbox_dark.css');

@font-face {
font-family: "NerdFont";
src: url("fonts/JetBrainsMonoNerdFont-Medium.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: "NerdFont";
src: url("fonts/JetBrainsMonoNerdFont-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal;
}

@font-face {
font-family: "NerdFont";
src: url("fonts/JetBrainsMonoNerdFont-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic;
}

@font-face {
font-family: "NerdFontMono";
src: url("fonts/JetBrainsMonoNerdFontMono-Medium.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: "NerdFontMono";
src: url("fonts/JetBrainsMonoNerdFontMono-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal;
}

@font-face {
font-family: "NerdFontMono";
src: url("fonts/JetBrainsMonoNerdFontMono-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic;
}

* {
color: var(--foreground-color);
font-family: "NerdFont";
}

body {
Expand Down Expand Up @@ -43,6 +86,7 @@ code {
background-color: var(--hue-background-color);
color: var(--hue-foreground-color);
font-weight: bold;
font-family: "NerdFontMono";
border-radius: 5px;
padding: 1px 4px 1px 4px;
}
Expand Down

0 comments on commit 4706100

Please sign in to comment.