Update README.md

This commit is contained in:
sotys 2020-08-10 14:51:04 +02:00 committed by GitHub
parent ad61438c3d
commit 0ff236f157
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,4 +7,45 @@ To use it, upload this directory in your `./extensions` directory and enable it
## Changelog
- 0.2 added file permission check, added german translation, removed un-editable file static/style.css
- 0.1 initial version
- 0.1 initial version
## Examples
### Enhancing mobile view
The following CSS rules let you have a more comfortable mobile view by hiding some icons (read/unread article, mark as favorite and RSS feed's favicon) and by reducing text size. It also displays the name of the subscribed feed, instead of the favicon:
```
@media (max-width: 840px)
{
.flux_header .item.website
{
width:20%;
padding:3px;
}
.flux .website .favicon, .flux_header .item.manage
{
display:none;
}
.flux_header .item.website span
{
display:inline;
font-size:0.7rem;
}
}
```
The result is shown below:
\begin{table}[]
\begin{tabular}{l}
Desktop screen resolution: \\
![Desktop](desktop_resolution.png) \\
Mobile screen resolution: \\
![Mobile](mobile_resolution.png)
\end{tabular}
\end{table}