Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More readability #1584

Merged
merged 3 commits into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions doc/_static/xdg.css
Original file line number Diff line number Diff line change
Expand Up @@ -120,26 +120,36 @@ p strong {
h1 {
font-weight: 500;
font-size: 2rem;
margin-top: '0';
margin-bottom: 1.5rem;
font-family: "Inter var", sans-serif;
}
h2 {
font-weight: 800;
font-size: 1.7rem;
margin-top: 2.5rem;
margin-bottom: 1.2rem;
font-family: "Inter var", sans-serif;
}
h3 {
font-weight: 800;
font-size: 1.3rem;
margin-top: 2.2rem;
margin-bottom: 1rem;
font-family: "Inter var", sans-serif;
}
h4 {
font-weight: 700;
font-size: 1.1rem;
margin-top: 1rem;
margin-bottom: 1rem;
font-family: "Inter var", sans-serif;
}
h5 {
font-weight: 700;
font-size: 1rem;
margin-top: 1rem;
margin-bottom: 1rem;
font-family: "Inter var", sans-serif;
}
h2,h3,h4,h5 { opacity: 0.7; }
Expand Down
22 changes: 3 additions & 19 deletions doc/website/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,7 @@

This is the website for the [XDG Desktop Portal project](https://github.com/flatpak/xdg-desktop-portal).

## Setup
## Development

The process of setting up the site locally consists of:

- Install ruby [gem bundler](https://bundler.io/). On [Fedora](https://getfedora.org/)/in the [Toolbx](https://containertoolbx.org) you do:

```
toolbox enter
sudo dnf install rubygem-bundler
cd xdg-desktop-portal/doc/website
bundle install
```

- Test the site locally:

```
bundle exec jekyll s
```

- `git commit` your changes and create a merge request. After review, the merged changes get automatically deployed to the site.
The contribution guidelines have been moved to the online documentation:
https://flatpak.github.io/xdg-desktop-portal/docs/for-contributors.html
2 changes: 1 addition & 1 deletion doc/website/_includes/footer.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<footer class="site-footer">
<p>&copy; {{ site.title }}, 2023</p>
<p>&copy; {{ site.title }}, 2023-2025</p>

<p><a href="{{ site.sourceurl }}">Website source</a></p>
</footer>
Loading