/* CSS "PAGE MODIFIÉE" */

/* ------------------------------------------------------------------------------------ */

/* Changer en "show" pour indiquer que la page a été modifiée */
/* Changer en "none" s'il n'y a pas eu de changements */

/* Accueil */
.Rec-accueil {
    display: none;
}

/* Avancement */
.Rec-avancement {
    display: none;
}

/* Dropbox */
.Rec-dropbox {
    display: none;
}

/* Programmation */
.Rec-programmation {
    display: none;
}

/* Installation Serveur */
.Rec-installation-serveur {
    display: none;
}

/* Linux */
.Rec-linux {
    display: none;
}

/* Gestion-projet */
.Rec-gestion-projet {
    display: none;
}

/* Agenda */
.Rec-agenda {
    display: none;
}

/* Logiciels */
.Rec-softwares {
    display: none;
}

/* Cours 2022-2023 */
.Rec-cours {
    display: none;
}

/* ------------------------------------------------------------------------------------ */























/* ------------------------------------------------------------------------------------ */

/* CODE | NE PAS MODIFIER */
button.Rec {
	height: 12px;
	font-size: 0;
	background-color: red;
	border: 0;
	border-radius: 35px;
	margin-top: 7px;
	margin-right: -7px;
	outline: none;
}

.notRec{
	background-color: darkred;
}

.Rec{
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@keyframes pulse{
	0%{
		box-shadow: 0px 0px 5px 0px rgba(173,0,0,.3);
	}
	65%{
		box-shadow: 0px 0px 5px 13px rgba(173,0,0,.3);
	}
	90%{
		box-shadow: 0px 0px 5px 13px rgba(173,0,0,0);
	}
}