
/*estados*/

.estado_pendiente,
.estado_progreso,
.estado_hecho
{
	color:white;
	padding:5px;
}
.estado_pendiente{
	background-color:red;
}
.estado_progreso{
	background-color:blue;
}
.estado_hecho{
	background-color:green;	
}

/*prioridades*/

.prioridad_muy_baja,
.prioridad_baja,
.prioridad_normal,
.prioridad_alta,
.prioridad_muy_alta
{
	color:black;
	padding:5px;
	background-color:white;
}
.prioridad_muy_baja::before{
	content:"<<";
	font-weight:bold;
	color:green;
}
.prioridad_baja::before{
	content:"<";
	font-weight:bold;
	color:yellow;
}
.prioridad_normal::before{
	content:"=";
	font-weight:bold;
	color:blue;
}
.prioridad_alta::before{
	content:">";
	font-weight:bold;
	color:orange;
}
.prioridad_muy_alta::before{
	content:">>";
	font-weight:bold;
	color:red;
}

