fix: ajoute la police manquante et les images

main
Antoine 2022-11-15 11:08:34 +01:00
Parent 3fa547cb86
révision 7b2bdc2608
6 fichiers modifiés avec 31 ajouts et 9 suppressions

16
package-lock.json générée
Voir le fichier

@ -1,13 +1,22 @@
{ {
"name": "theme", "name": "site web de la PLUSS",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "site web de la PLUSS",
"dependencies": {
"cantarell": "^0.303.0"
},
"devDependencies": { "devDependencies": {
"prettier": "2.7.1" "prettier": "2.7.1"
} }
}, },
"node_modules/cantarell": {
"version": "0.303.0",
"resolved": "https://registry.npmjs.org/cantarell/-/cantarell-0.303.0.tgz",
"integrity": "sha512-qrpi0oyF/vLJWUhl8Db+KEamByCXBlUiiuW/nr7f9/gREz4Uf0b/dIzCP3oS4kdWiu7cfeUmNUM9y8WxpR3wog=="
},
"node_modules/prettier": { "node_modules/prettier": {
"version": "2.7.1", "version": "2.7.1",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz",
@ -25,6 +34,11 @@
} }
}, },
"dependencies": { "dependencies": {
"cantarell": {
"version": "0.303.0",
"resolved": "https://registry.npmjs.org/cantarell/-/cantarell-0.303.0.tgz",
"integrity": "sha512-qrpi0oyF/vLJWUhl8Db+KEamByCXBlUiiuW/nr7f9/gREz4Uf0b/dIzCP3oS4kdWiu7cfeUmNUM9y8WxpR3wog=="
},
"prettier": { "prettier": {
"version": "2.7.1", "version": "2.7.1",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz",

Voir le fichier

@ -6,5 +6,8 @@
}, },
"devDependencies": { "devDependencies": {
"prettier": "2.7.1" "prettier": "2.7.1"
},
"dependencies": {
"cantarell": "^0.303.0"
} }
} }

Fichier binaire non affiché.

Fichier binaire non affiché.

Fichier binaire non affiché.

Après

Largeur:  |  Hauteur:  |  Taille: 66 KiB

Voir le fichier

@ -11,20 +11,25 @@
/* variables */ /* variables */
:root { :root {
--ttc-yellow: #7D7B17; --ttc-yellow: #7d7b17;
--ttc-blue: #1C9B8C; --ttc-blue: #1c9b8c;
--ttc-red: rgb(255, 0, 0); --ttc-red: rgb(255, 0, 0);
--ttc-dark: rgb(13, 36, 35); --ttc-dark: rgb(13, 36, 35);
--ttc-white: rgb(255, 255, 255); --ttc-white: rgb(255, 255, 255);
--ttc-font-sans-serif: Cantarell, Ubuntu, sans-serif;
} }
@font-face { @font-face {
font-family: "Roboto"; font-family: "Roboto";
src: url("assets/fonts/roboto-slab-bold.ttf") format("truetype"); src: url("assets/fonts/roboto-slab-bold.ttf") format("truetype");
} }
@font-face {
font-family: "Cantarell";
src: url("assets/fonts/cantarell.woff2") format("truetype");
}
body { body {
font-family: sans-serif; font-family: var(--ttc-font-sans-serif);
} }
body, body,
@ -91,7 +96,7 @@ h3 {
.footer-inner, .footer-inner,
.footer-inner p { .footer-inner p {
color: var(--ttc-white); color: var(--ttc-white);
font-family: Agenda, Cantarell, Ubuntu, sans-serif; font-family: var(-ttc-font-sans-serif);
} }
.footer-inner h1, .footer-inner h1,
@ -104,6 +109,10 @@ h3 {
font-family: "Roboto", serif; font-family: "Roboto", serif;
} }
p {
font-family: var(--ttc-font-sans-serif);
}
.footer-widgets-outer-wrapper { .footer-widgets-outer-wrapper {
border: none; border: none;
color: var(--ttc-dark); color: var(--ttc-dark);
@ -127,10 +136,6 @@ h3 {
} }
} }
p {
font-family: Agenda, Cantarell, Ubuntu, sans-serif;
}
a.wp-block-button__link { a.wp-block-button__link {
background-color: var(--ttc-blue); background-color: var(--ttc-blue);
} }