diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-10-21 20:57:53 +0200 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-10-21 20:57:53 +0200 |
| commit | 0b46f1e7f47a7631c00692ec32ad85f78ba64f4c (patch) | |
| tree | 4adb9c6517ac6ec6c186a85a7cc8ebc8c376775f /templates/base.html | |
| parent | 5dbd7412e0a3ef103dddd27f2189fda38670b659 (diff) | |
| download | mitjafelicijan.com-0b46f1e7f47a7631c00692ec32ad85f78ba64f4c.tar.gz | |
Added projects page
Diffstat (limited to 'templates/base.html')
| -rw-r--r-- | templates/base.html | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/templates/base.html b/templates/base.html index fa8c0ae..634841d 100644 --- a/templates/base.html +++ b/templates/base.html | |||
| @@ -163,14 +163,16 @@ | |||
| 163 | pre code span { display: initial!important; } | 163 | pre code span { display: initial!important; } |
| 164 | } | 164 | } |
| 165 | 165 | ||
| 166 | @media only screen and (max-width: 800px) { | 166 | @media only screen and (max-width: 720px) { |
| 167 | /* Responsive tables. */ | 167 | /* Responsive tables. */ |
| 168 | table { | 168 | table { |
| 169 | display: block; | 169 | display: block; |
| 170 | overflow-y: auto; | 170 | overflow-y: auto; |
| 171 | } | 171 | } |
| 172 | 172 | ||
| 173 | section.quick-jump { grid-template-columns: 1fr; } | 173 | .hide-on-mobile { display: none; } |
| 174 | |||
| 175 | section.quick-jump { display: none; } | ||
| 174 | } | 176 | } |
| 175 | </style> | 177 | </style> |
| 176 | <script defer src="https://app.tinyanalytics.io/pixel/isfRNEahfHiS2Ttp"></script> | 178 | <script defer src="https://app.tinyanalytics.io/pixel/isfRNEahfHiS2Ttp"></script> |
| @@ -179,10 +181,11 @@ | |||
| 179 | <header> | 181 | <header> |
| 180 | <nav> | 182 | <nav> |
| 181 | <a href="/">Home</a> | 183 | <a href="/">Home</a> |
| 184 | <a href="/projects.html">Projects</a> | ||
| 182 | <a href="https://github.com/mitjafelicijan" target="_blank">Code</a> | 185 | <a href="https://github.com/mitjafelicijan" target="_blank">Code</a> |
| 183 | <a href="https://github.com/mitjafelicijan/probe" target="_blank">Probe</a> | 186 | <a href="https://github.com/mitjafelicijan/probe" target="_blank" class="hide-on-mobile">Probe</a> |
| 184 | <a href="https://github.com/mitjafelicijan/dotfiles" target="_blank">Dotfiles</a> | 187 | <a href="https://github.com/mitjafelicijan/dotfiles" target="_blank" class="hide-on-mobile">Dotfiles</a> |
| 185 | <a href="/assets/mitjafelicijan.pgp.pub.txt">PGP</a> | 188 | <a href="/assets/mitjafelicijan.pgp.pub.txt" class="hide-on-mobile">PGP</a> |
| 186 | <a href="/curriculum-vitae.html">CV</a> | 189 | <a href="/curriculum-vitae.html">CV</a> |
| 187 | <a href="/feed.xml">RSS</a> | 190 | <a href="/feed.xml">RSS</a> |
| 188 | </nav> | 191 | </nav> |
