@charset "utf-8";
/**---- Structure html/css/ de  Nathalie Teste
/**---- Respect de la Paternité - Pas d'utilisation commerciale - Partage des conditions initiales à l'identique ----**/

/*                              CSS  des pages avec programme Python                 
/* ------------------------------------------------------------------------- */
/*                       Règles générales pour la page                       */
/* ------------------------------------------------------------------------- */
* {
	margin: 0;
	padding: 0;
	}

body{
	margin: 0;								/* marge extérieure des éléments du corps de la page */
	font-size: 1em;								/* taille de base de la police */
	line-height: 1.20;								/* hauteur de ligne de texte */
	color: black;									/* couleur de base du texte */
	font-family: 'Helvetica', sans-serif;
	background: linear-gradient(to right, white,white, white, white);
	counter-reset: num_exo;							/* mise à zéro du compteur num_exo */
	}

/* ------------------------------------------------------------------------- */
/*                    Mise en forme des sélecteurs usuels                    */
/* ------------------------------------------------------------------------- */
p {
	margin: 15px 10px;
	text-align: justify;
	}
	
code {
	font-size: 1em;
	font-family: monospace, Courier New;
	font-weight: bold;
	}

pre>code {
	font-weight: normal;
	}

strong {
	text-decoration: none;
	font-weight: bold;
	color: black;
	}

em {
	font-style: italic;
	}

sub {
	font-size: 0.8em;
    vertical-align: -0.5em;
	}

sup {
	font-size: 0.8em;
    vertical-align: 0.5em;
	}

/* ------------------------------------------------------------------------- */
/*                    Exécution des programmes en Python                     */
/* ------------------------------------------------------------------------- */
div[class*="programme"] {
	margin: 15px;
	clear: both;
	}

div.a_executer{
	width:100% ;
	display: flex;
	flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
	}

button.runner{
	width:15%;
	padding-bottom: 4px;
	font-size: 1em;
	font-weight: bold ;
    color:black;
	background: white;
	border-radius:0px 0px 0px;
	cursor: pointer;
	text-align:center;
    vertical-align:middle;
	}
button.cadre_python{
	width:94%;
    height:31px;
	padding-bottom:0px;
	font-size: 1em;
	
    color:black;
	background:white;
	border-radius:0px 0px 0px;
	text-align:center;
    vertical-align:middle;
	}
div.execution{
	width:100% ;
	box-sizing : border-box;
	min-height: 100px;
	margin: 10px auto;
	background-color: #ffffff;
	border: 2px solid white;
	border-radius: 0px;
	box-shadow: 0 0 0px #010101;
	}

pre.sortie {
	font-family: monospace, Courier New;
	margin: 15px;
	}

div.tortue{
	margin-top: 20px;
	background-color: #ffffff;
	border-radius: 0 0 0px 0px;
	}


