Added support and styling for code
Signed-off-by: Louis Vallat <louis@louis-vallat.xyz>
This commit is contained in:
parent
4ddf9589cb
commit
1f95796279
@ -2,8 +2,13 @@
|
|||||||
/* Coded by Louis Vallat */
|
/* Coded by Louis Vallat */
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Rubik';
|
font-family: 'JetBrains Mono';
|
||||||
src: url("/assets/fonts/Rubik-Medium.ttf");
|
src: url("/assets/fonts/JetBrainsMono.ttf");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'IBM Plex Mono';
|
||||||
|
src: url("/assets/fonts/IBMPlexMono.ttf");
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
@ -13,6 +18,7 @@
|
|||||||
|
|
||||||
:root {
|
:root {
|
||||||
--bg: #2A2D34;
|
--bg: #2A2D34;
|
||||||
|
--light_bg: #414652;
|
||||||
--fg: #fefefe;
|
--fg: #fefefe;
|
||||||
--link: #009DDC;
|
--link: #009DDC;
|
||||||
--link_h: #009B72;
|
--link_h: #009B72;
|
||||||
@ -80,7 +86,7 @@ nav > a:not(#home_link) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1, h2, h3, h4, h5, h6 {
|
||||||
font-family: 'Rubik', sans-serif;
|
font-family: 'JetBrains Mono', sans-serif;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
@ -126,6 +132,25 @@ footer {
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
margin-bottom: 5px;
|
||||||
|
margin-top: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre > code {
|
||||||
|
padding: 10px;
|
||||||
|
display: inline-block;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
padding: 5px;
|
||||||
|
border-radius: 5px;
|
||||||
|
background-color: var(--light_bg);
|
||||||
|
font-family: 'IBM Plex Mono', monospace;
|
||||||
|
line-height: 1.2em;
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 992px) {
|
@media screen and (max-width: 992px) {
|
||||||
body {
|
body {
|
||||||
margin-right: 10vw;
|
margin-right: 10vw;
|
||||||
|
BIN
src/assets/fonts/IBMPlexMono.ttf
Normal file
BIN
src/assets/fonts/IBMPlexMono.ttf
Normal file
Binary file not shown.
BIN
src/assets/fonts/JetBrainsMono.ttf
Normal file
BIN
src/assets/fonts/JetBrainsMono.ttf
Normal file
Binary file not shown.
Binary file not shown.
@ -2,3 +2,11 @@
|
|||||||
|
|
||||||
Démo
|
Démo
|
||||||
[index](index.html)
|
[index](index.html)
|
||||||
|
|
||||||
|
|
||||||
|
```py
|
||||||
|
if __name__ == "__main__":
|
||||||
|
print("Hello World!")
|
||||||
|
```
|
||||||
|
|
||||||
|
This is a `demo`.
|
Loading…
Reference in New Issue
Block a user