Modification de styles
- Ajout d'un dark mode adaptatif - Optimisation du CSS
This commit is contained in:
parent
f9ee7ed182
commit
1696faf654
@ -1,6 +1,6 @@
|
|||||||
footer {
|
footer {
|
||||||
background: #616A6B;
|
background: var(--c-bg-footer);
|
||||||
color: white;
|
color: var(--c-footer-text);
|
||||||
display: grid;
|
display: grid;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
@ -23,7 +23,7 @@ footer div p {
|
|||||||
padding-top: 25px;
|
padding-top: 25px;
|
||||||
padding-bottom: 25px;
|
padding-bottom: 25px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: #45a1ff;
|
background-color: #21262d;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -31,8 +31,8 @@ footer div p {
|
|||||||
height: max-content;
|
height: max-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
#contact a, #sitemap a {
|
footer a {
|
||||||
color: white;
|
color: var(--c-footer-text);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -86,18 +86,6 @@ footer ul {
|
|||||||
grid-row: 1;
|
grid-row: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#social {
|
|
||||||
grid-column: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sitemap {
|
|
||||||
grid-column: 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
#contact {
|
|
||||||
grid-column: 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
#copyright {
|
#copyright {
|
||||||
grid-column: 1/4;
|
grid-column: 1/4;
|
||||||
grid-row: 2;
|
grid-row: 2;
|
||||||
@ -109,24 +97,4 @@ footer ul {
|
|||||||
grid-template-columns: 100%;
|
grid-template-columns: 100%;
|
||||||
grid-auto-rows: auto;
|
grid-auto-rows: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#social, #sitemap, #contact, #copyright {
|
|
||||||
grid-column: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
#social {
|
|
||||||
grid-row: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sitemap {
|
|
||||||
grid-row: 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
#contact {
|
|
||||||
grid-row: 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
#copyright {
|
|
||||||
grid-row: 4;
|
|
||||||
}
|
|
||||||
}
|
}
|
@ -1,6 +1,5 @@
|
|||||||
header {
|
header {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background-color: #f1f1f1;
|
|
||||||
padding: 20px 10px;
|
padding: 20px 10px;
|
||||||
height: max-content;
|
height: max-content;
|
||||||
}
|
}
|
||||||
@ -21,12 +20,11 @@ header h1 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#menu li a:hover {
|
#menu li a:hover {
|
||||||
background-color: #ddd;
|
background-color: var(--c-menu-hover);
|
||||||
color: black;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#menu li a {
|
#menu li a {
|
||||||
color: black;
|
color: var(--c-title);
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
@ -47,7 +45,6 @@ header h1 {
|
|||||||
}
|
}
|
||||||
#menu {
|
#menu {
|
||||||
float: right;
|
float: right;
|
||||||
/*display: block;*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#burger-menu {
|
#burger-menu {
|
||||||
@ -58,7 +55,7 @@ header h1 {
|
|||||||
|
|
||||||
@media screen and (max-width: 700px) {
|
@media screen and (max-width: 700px) {
|
||||||
.invisible {
|
.invisible {
|
||||||
display : none;
|
display : none;
|
||||||
|
|
||||||
}
|
}
|
||||||
#menu li a {
|
#menu li a {
|
||||||
@ -69,7 +66,6 @@ display : none;
|
|||||||
|
|
||||||
#menu {
|
#menu {
|
||||||
float: none;
|
float: none;
|
||||||
/*display: none;*/
|
|
||||||
margin-top: 80px;
|
margin-top: 80px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
:root {
|
||||||
|
--c-bg: #0d1117;
|
||||||
|
--c-title: white;
|
||||||
|
--c-text: #8b949e;
|
||||||
|
--c-menu-hover: #1c2431;
|
||||||
|
--c-bg-footer: var(--c-bg);
|
||||||
|
--c-footer-text: var(--c-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: light) {
|
||||||
|
:root {
|
||||||
|
--c-bg: white;
|
||||||
|
--c-title: black;
|
||||||
|
--c-text: black;
|
||||||
|
--c-menu-hover: #ddd;
|
||||||
|
--c-bg-footer: #616A6B;
|
||||||
|
--c-footer-text: white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
@ -10,6 +30,12 @@ body {
|
|||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-rows: auto 1fr auto;
|
grid-template-rows: auto 1fr auto;
|
||||||
|
background-color: var(--c-bg);
|
||||||
|
color: var(--c-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6, .title {
|
||||||
|
color: var(--c-title);
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
|
Loading…
Reference in New Issue
Block a user