template/styles.css: travail sur couleur de texte et lien meta
This commit is contained in:
parent
f9afb42c1f
commit
a30e7a1837
|
@ -15,6 +15,7 @@
|
|||
*/
|
||||
:root {
|
||||
--a-lec_blue: #00bdff;
|
||||
--a-lec_blue_darker: #00adef;
|
||||
--a-lec_red: #b11107;
|
||||
--a-lec_yellow: #ecb41a;
|
||||
--a-lec_black: #2d3842;
|
||||
|
@ -69,7 +70,9 @@ h1#article_title {
|
|||
margin-top: 30px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
a#article_title_link {}
|
||||
a#article_title_link {
|
||||
color: var(--a-lec_blue_darker);
|
||||
}
|
||||
div#article_refs {
|
||||
background-color: var(--a-lec_yellow);
|
||||
float: right;
|
||||
|
@ -79,7 +82,14 @@ div#article_refs {
|
|||
margin-top: -3em;
|
||||
}
|
||||
|
||||
a#post_code {}
|
||||
a#post_code {
|
||||
color: var(--a-lec_red);
|
||||
padding: 0 0px;
|
||||
font-weight: normal;
|
||||
-webkit-transition: all 0.25s ease-out;
|
||||
-moz-transition: all 0.25s ease-out;
|
||||
transition: all 0.25s ease-out;
|
||||
}
|
||||
|
||||
/* ! TOC */
|
||||
h2.toc_title {
|
||||
|
|
Loading…
Reference in New Issue