essais en cours…

This commit is contained in:
tierce 2021-08-27 00:10:59 +02:00
parent 008d40ba9d
commit 1e4bc4c204
3 changed files with 29 additions and 16 deletions

View File

@ -55,6 +55,11 @@ a.button:hover, a:hover
color:#0F0F0F;
background-color: lightgreen;
}
pre, code {
line-height: 2.1rem;
font-family: courier;
font-size: 1.5rem;
}
a.button:hover > i
{
@ -62,14 +67,6 @@ a.button:hover > i
color: #0F0F0F;
}
/* pour les blocks de code - très sommaire */
.highlight pre, code {
background: #272822;
color: #bbb;
padding: 0.5rem;
}
hr.title {
border: 0.3rem solid red;
}

View File

@ -1,6 +1,7 @@
/* includes */
@import "classes.css";
@import "Fork-Awesome/css/fork-awesome.min.css";
@import "syntax.css";
/* fonts */
@font-face
@ -20,12 +21,14 @@ body
background-color: #0F0F0F;
font-family: OpenDyslexic;
color: darkturquoise;
}
section{
max-width: 85%;
margin-left: auto;
margin-right: auto;
margin-top: 1rem;
line-height: 3rem;
/*background: linear-gradient(to left top, #0F0F0F, #000) fixed;*/
}
a
@ -114,10 +117,3 @@ footer
}
}
pre, code {
line-height: 2.1rem;
font-family: courier;
font-size: 1.5rem;
}

View File

@ -0,0 +1,20 @@
/* for the code highlight */
.highlight pre, code {
background: #272822;
color: #bbb;
padding: 0.5rem;
}
pre, code {
line-height: 2.1rem;
font-family: courier;
font-size: 1.5rem;
}
/* complément possibles
- https://gist.github.com/demisx/025698a7b5e314a7a4b5
*/