diff options
Diffstat (limited to 'content')
-rw-r--r-- | content/articles/2022-08-29-blog-test.md | 8 | ||||
-rw-r--r-- | content/style.css | 4 |
2 files changed, 7 insertions, 5 deletions
diff --git a/content/articles/2022-08-29-blog-test.md b/content/articles/2022-08-29-blog-test.md index ea4d166..2b65444 100644 --- a/content/articles/2022-08-29-blog-test.md +++ b/content/articles/2022-08-29-blog-test.md @@ -10,9 +10,11 @@ _italic_ **bold** `code` [Link](https://metamuffin.org/) Look at this code here. -``` -code -block +```rs +fn main() { 1 + 1 } +pub async fn useless(s: Box<dyn Write>) -> impl Future<usize> { + todo!() +} ``` As you can see, its pointless i.e. no points diff --git a/content/style.css b/content/style.css index dbfd2ea..a6f41a2 100644 --- a/content/style.css +++ b/content/style.css @@ -20,10 +20,10 @@ h1 {font-size: xx-large } h2 {font-size: x-large } h3 {font-size: large } -p,h1,h2,h3,h4,h5,h6,span,li { font-family: "Ubuntu", sans-serif; } +p,h1,h2,h3,h4,h5,h6,li { font-family: "Ubuntu", sans-serif; } h1,h2 { color: #b575ff } h3 { color: #ff83fd } -p,span,li { color: white; margin-left: 2em } +p,li { color: white; margin-left: 2em } a { color: #82a8ff; font-style: italic; text-decoration: underline } hr { border: 1px solid grey } |