summaryrefslogtreecommitdiffstats
path: root/src/styles/pages
Commit message (Collapse)AuthorAgeFilesLines
* chore: add a banner for users with JS disabledArmand Philippot2022-02-141-0/+6
|
* refactor: extract contact form from contact pageArmand Philippot2022-02-101-20/+0
| | | | | The contact page file was too long. By extracting the contact form the readability is improved.
* chore: improve contact form behaviorArmand Philippot2022-02-101-0/+20
| | | | | | | * The status was not visile in top of the form, so I moved it under the submit button. * It was possible to send an empty form. * The input type for email should be email instead of text.
* chore: add a page for projectsArmand Philippot2022-01-201-0/+13
|
* feat: implement dark modeArmand Philippot2022-01-171-4/+16
|
* refactor(styles): rename shadow and border variablesArmand Philippot2022-01-162-3/+3
|
* chore: update sidebar and widgets stylesArmand Philippot2022-01-151-29/+0
| | | | | | | | | I'm now using a widget that can be expanded/collapsed. It also allows me to handle more effectively widgets overflow and to avoid styles repetitions. However, with stylelint rule "no-descending-specificity", I'm not sure if the stylesheets are really logical... Maybe I should deactivate this rule.
* chore(homepage): add icons to some buttonsArmand Philippot2022-01-141-0/+4
|
* chore: change posts list stylesArmand Philippot2022-01-142-53/+2
|
* chore: add meta, toc and widgets on thematic pagesArmand Philippot2022-01-111-0/+20
|
* refactor(sidebar): use a component to avoid styles repetitionArmand Philippot2022-01-112-34/+15
| | | | | | I also fix some overflow/sticky issues. I have to set overflow auto only when there is no button-like links otherwise, with translate, the button is cropped on hover.
* refactor(aside): move width from aside to sharing widgetArmand Philippot2022-01-101-1/+0
| | | | Only the Sharing widget needs the "min-content" width.
* refactor(styles): use compose to declare grid layouts onceArmand Philippot2022-01-103-59/+17
| | | | | | | I'm using same grid layouts in multiple places. To avoid maintenance issue, I think it is better to declare the grid once and to import its declaration where it is needed. Thanks to CSS modules, I can use compose to do that.
* chore: update homepage stylesArmand Philippot2022-01-081-1/+18
|
* chore: add article header stylesArmand Philippot2022-01-071-3/+4
|
* chore: adjust css grid on listing pages without sidebarArmand Philippot2022-01-071-9/+33
|
* chore: move Main grid to its childrenArmand Philippot2022-01-065-37/+148
| | | | This way I can use full width background for some blocks.
* chore: add a recent posts widget to the homepageArmand Philippot2022-01-041-0/+8
|
* chore: add subject viewArmand Philippot2021-12-181-0/+26
|
* chore: create thematic page viewArmand Philippot2021-12-161-0/+11
For now I have to repeat some markup/styles, I cannot reuse PostsList component. WP GraphQL does not offer edges for ACF Post2Post or filters to get thematic posts with another way. I should create custom fields in backend to improve the posts fetching.