about summary refs log tree commit diff
path: root/static/css (follow)
Commit message (Collapse)AuthorAgeFilesLines
* CSS: various small fixesFranck Cuny2021-08-231-2/+2
|
* CSS: use decoration on headers only for articlesFranck Cuny2021-08-231-4/+4
| | | | | | | | | | Add an element "article" to the single page template, and change the CSS to use the decoration for headers only for that kind of content. Having decoration for all headers is distracting, it's more suited for actual content. We also don't need decoration for h1, only smaller headers.
* CSS: rename the class for the tagsFranck Cuny2021-08-231-4/+6
|
* CSS: makes the menu more readableFranck Cuny2021-08-231-15/+33
| | | | Move the title to the left and the menu items to the right.
* CSS: make the content more readableFranck Cuny2021-08-151-15/+24
| | | | | | | | | | The Roboto Slab font is hard to read (at least for me). Switch to Droid Sans and make the text a bit smaller. Change the background of the page to white (again), and change the background color for the code snippets. Add text decoration for headlines (similar to org-bullet).
* CSS: support table of contentFranck Cuny2021-08-151-0/+12
| | | | | If an entry has the parameter `#+toc` set to `t`, we will enable the table of content in the page.
* CSS: use a class for the menuFranck Cuny2021-08-151-7/+6
| | | | | We will have more use of the tag `nav` and we will need different styles for it.
* css: reduce the size of the fontFranck Cuny2021-08-141-1/+1
|
* css: bigger font and highlight colorsFranck Cuny2021-08-051-6/+16
| | | | | Increase the font size and change some of the colors used for highlighting code.
* css: add a scroll bar if the content overflowsFranck Cuny2021-05-181-1/+1
|
* layout: add a navbarFranck Cuny2021-04-221-1/+40
| | | | | | | | | | | | | I want to differentiate blog's entries from more general notes. For this, we create two menu entries, and add a navbar at the top. The nav bar let us select between the two kind of articles: blogs or notes. For now we have a single blog entry, and no notes. The page to list entries is simplified: we use the same layout for all lists (tags, notes, blogs). The CSS is updated to support the new nav bar.
* css: switch to sans-serif; add tables; other tweaksFranck Cuny2021-04-131-5/+28
|
* css: remove extra white spaceFranck Cuny2021-04-111-1/+1
|
* css: change font to roboto slabFranck Cuny2021-04-111-5/+5
|
* layout: add date and tags to single pagesFranck Cuny2021-04-061-0/+16
| | | | | | | We want to show the tags and the published/updated date for the articles. Add to the CSS the classes for these new elements.
* css: update style for links and headersFranck Cuny2021-04-061-4/+8
| | | | Indent properly the CSS
* css: set background color for code blockFranck Cuny2021-04-061-5/+9
| | | | Indent properly the CSS for the `pre` tag.
* css: change the default fontFranck Cuny2021-04-061-5/+5
|
* initial site with hugoFranck Cuny2021-03-071-0/+47
Start my website from scratch once more, using hugo to generate it. For now the layout is pretty simple: - an index page that will list future notes - notes should be created under the "content" directory The theme is custom and I'll try to keep this simple.