ajout de quelques regles generales de css, encore messy

This commit is contained in:
hugogogo
2021-02-26 11:39:18 +01:00
parent fbfde7daee
commit aa6a3320f5
4 changed files with 72 additions and 30 deletions

View File

@@ -40,22 +40,37 @@ a:active {
p, var {
color: var(--color-texts);
}
/*sizes*/
p {
font-size: 1.8rem;
line-height: 3rem;
}
h1 {
font-size: 2.5rem;
}
h2 {
font-size: 2rem;
}
.mini_text {
font-size: 1.5rem;
}
/*specials settings*/
body p, body p *, body h1, body h1 *, body h2, body h2 * {
display: inline;
}
a, a > * {
cursor: pointer;
}
li *, li p, article b, article em,
article i, article a, article var {
li *, li p, b, em, i, a, var, span {
display: inline;
}
i {
font-style: italic;
}
b {
b, em {
font-weight: 600;
color: var(--article-medium);
}
em {
font-weight: 600;
color: var(--article-em);
p br, h1 br, h2 br {
margin: 0px;
}