All checks were successful
Deploy / Deploy to Production (push) Successful in 9s
24 lines
527 B
CSS
24 lines
527 B
CSS
/*
|
|
* Styles pour les marks personnalisés - Front-end
|
|
* À inclure dans ton CSS principal ou à importer
|
|
*/
|
|
|
|
/* Mark Green - Couleur verte */
|
|
.green {
|
|
color: #04fea0;
|
|
}
|
|
|
|
/* Mark Pixel - Typo serif (remplacer par ta typo pixel) */
|
|
.pixel {
|
|
font-family: Georgia, "Times New Roman", serif;
|
|
/* Remplace par ta font pixel, ex:
|
|
font-family: "Press Start 2P", cursive;
|
|
*/
|
|
}
|
|
|
|
/* Combinaison des deux marks */
|
|
.green.pixel,
|
|
.pixel.green {
|
|
color: #04fea0;
|
|
font-family: Georgia, "Times New Roman", serif;
|
|
}
|