Skip to content

Commit

Permalink
Versão 1.1
Browse files Browse the repository at this point in the history
* Correção das margens de listas não ordenadas (`ul`).
* Correção das margens superior e inferior de títulos (`h1`–`h6`).
* Remove rótulos e aumenta ícones da classe `.entry-actions` em telas pequenas (<620px).
* Acrescenta histórico de versões.
  • Loading branch information
rghedin committed Nov 18, 2024
1 parent a21e033 commit db2324f
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,16 @@ Uma camada de CSS para deixar o [Miniflux](https://github.com/miniflux/v2) menos
## Como usar?

Copie o conteúdo do arquivo `style.css` no campo “CSS Customizado” nas configurações (`/settings`) no seu perfil do Miniflux.

## Histórico de versões

### 1.1, 18/11/2024

* Correção das margens de listas não ordenadas (`ul`).
* Correção das margens superior e inferior de títulos (`h1``h6`).
* Remove rótulos e aumenta ícones da classe `.entry-actions` em telas pequenas (<620px).
* Acrescenta histórico de versões.

### 1.0, 18/11/2024

* Lançamento.
16 changes: 15 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/* https://github.com/rghedin/minifluxbonito
Versão 1.1 */

:root {
--cor-fonte: hsl(0, 0%, 10%);
--cor-link-meta: hsl(0, 0%, 47%);
Expand Down Expand Up @@ -231,10 +234,13 @@
vertical-align: middle;
margin-bottom: 1.1rem;
}
.entry-content ul {
margin: 0 0 1.1rem 1.2rem;
}

.entry-content h1, h2, h3, h4, h5, h6 {
line-height: 1.25;
margin: 0 auto 2rem;
margin: 2.2rem auto 1.1rem;
font-weight: 500;
}

Expand All @@ -260,4 +266,12 @@
.header li:last-child {
border-bottom: none;
}

.icon {
width: 24px;
height: 24px;
}
.icon-label {
display: none;
}
}

0 comments on commit db2324f

Please sign in to comment.