revue 1 a 5

This commit is contained in:
hugogogo
2021-04-03 12:39:33 +02:00
parent b348018a5c
commit 0311966a11
6 changed files with 168 additions and 42 deletions

View File

@@ -21,4 +21,13 @@ body main h2 {
body main h3 {
padding: 40px 0px 0px 0px;
}
body main h4 {
padding: 0px;
}
body main h5 {
padding: 0px;
}
body main h6 {
padding: 0px;
}

View File

@@ -1,12 +1,15 @@
/*---------------------------------------------*/
/*FONTS*/
h1, h2, h3, h4, h5, h6 {
h1, h2, h3, h4, h5, h6, em {
font-family: var(--font-titles), var(--font-fallback), sans-serif;
}
a, p, li {
font-family: var(--font-texts), var(--font-fallback), sans-serif;
}
code {
font-family: monospace;
}
/*---------------------------------------------*/
/*COLORS*/
@@ -24,7 +27,7 @@ p a:active {
color: var(--color-link-active);
}
/*color text*/
h1, h2, h3, p, span {
h1, h2, h3, h4, h5, h6, p, span {
color: var(--color-text);
}
@@ -52,6 +55,18 @@ h3 {
font-size: 1.8em;
line-height: 1.5em;
}
h4 {
font-size: 1.8em;
line-height: 1.5em;
}
h5 {
font-size: 1.8em;
line-height: 1.5em;
}
h6 {
font-size: 1.8em;
line-height: 1.5em;
}
small, sub, sup {
font-size: 0.8em;
line-height: 1.2em;
@@ -59,7 +74,7 @@ small, sub, sup {
/*---------------------------------------------*/
/*OTHER SETTINGS*/
p, p *, h1, h1 *, h2, h2 *, h3, h3 *, li * {
p, p *, h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *, li * {
display: inline;
}
a, a * {
@@ -75,15 +90,36 @@ mark { /*text with background color*/
padding: 0px 5px;
background-color: hsl(var(--hue-4) 50% 90%);
}
/*
strong {
background-color: hsl(var(--hue-3) 50% 90%);
}
del {
text-decoration: line-through;
}
ins {
text-decoration: underline;
}
sub {
vertical-align: sub;
}
sup {
vertical-align: super;
}
code {
background-color: var(--color-back-dark);
}
/*
<i> - Italic
<em> - Emphasized -> title font
<b> - Bold
<strong> - Important -> background color
<mark> - Marked -> background color
<small> - Smaller
<del> - Deleted
<ins> - Inserted -> underline
<sub> - Subscript
<sup> - Superscript
<code> - Computer
*/
/*---------------------------------------------*/
@@ -111,18 +147,3 @@ code {
white-space: nowrap;
}
/*
<i> - Italic text
<em> - Emphasized text
<b> - Bold text
<strong> - Important text
<mark> - Marked text
<small> - Smaller text
<del> - Deleted text
<ins> - Inserted text
<sub> - Subscript text
<sup> - Superscript text
<code> - Computer code
*/