62 lines
1.1 KiB
CSS
62 lines
1.1 KiB
CSS
|
|
:root {
|
|
/* colors texts */
|
|
--color-texts: rgb(1, 1, 1);
|
|
--color-texts-special: rgb(1, 1, 1);
|
|
--color-links: rgb(120, 1, 1);
|
|
--color-links-hover: rgb(120, 1, 1);
|
|
--color-links-visited: rgb(120, 1, 1);
|
|
--color-links-active: rgb(120, 1, 1);
|
|
--color-title-1: rgb(120, 1, 1);
|
|
|
|
/* fonts */
|
|
--font-titles: 'paradroid';
|
|
--font-texts: 'louisgeorge';
|
|
--font-fallback: 'cabrion';
|
|
}
|
|
|
|
/*/////////////////////////////////////////////*/
|
|
/*TEXTS*/
|
|
/*fonts*/
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: var(--font-titles), var(--font-fallback), sans-serif;
|
|
}
|
|
a, p, li {
|
|
font-family: var(--font-texts), var(--font-fallback), sans-serif;
|
|
}
|
|
/*colors*/
|
|
a, a:link {
|
|
color: var(--color-links);
|
|
}
|
|
a:visited {
|
|
color: var(--color-links-visited);
|
|
}
|
|
a:hover {
|
|
color: var(--color-links-hover);
|
|
}
|
|
a:active {
|
|
color: var(--color-links-active);
|
|
}
|
|
p, var {
|
|
color: var(--color-texts);
|
|
}
|
|
/*specials settings*/
|
|
a, a > * {
|
|
cursor: pointer;
|
|
}
|
|
li *, li p, article b, article em,
|
|
article i, article a, article var {
|
|
display: inline;
|
|
}
|
|
i {
|
|
font-style: italic;
|
|
}
|
|
b {
|
|
font-weight: 600;
|
|
color: var(--article-medium);
|
|
}
|
|
em {
|
|
font-weight: 600;
|
|
color: var(--article-em);
|
|
}
|