style main page

ServeurDeTest
nathan boileau 2 years ago
parent 68c79bb56e
commit 4671058cbf

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 MiB

@ -0,0 +1,22 @@
body {
min-height: 100vh;
font-family: "Orbitron", sans-serif;
color: white;
scroll-behavior: smooth;
height: 100vh;
background-image: radial-gradient(
circle,
#312c42,
#2e2a3d,
#2a2738,
#272434,
#24222f,
#22202c,
#1f1f29,
#1d1d26,
#1b1b23,
#191a21,
#17181e,
#15161c
);
}

@ -47,13 +47,21 @@
<div <div
class="row rounded p-3 m-3" class="row rounded p-3 m-3"
style=" style="
background: #16222a; /* fallback for old browsers */ background-image: linear-gradient(
background: -webkit-linear-gradient( to left,
to right, #312c42,
#3a6073, #2e2a3d,
#16222a #2a2738,
); /* Chrome 10-25, Safari 5.1-6 */ #272434,
background: linear-gradient(to right, #3a6073, #16222a); #24222f,
#22202c,
#1f1f29,
#1d1d26,
#1b1b23,
#191a21,
#17181e,
#15161c
);
" "
> >
<div class="row"> <div class="row">
@ -64,7 +72,8 @@
> >
<p> <p>
Pour ce deuxième test, nous allons voir comment déclarer une Pour ce deuxième test, nous allons voir comment déclarer une
variable et la manipuler. Pour créer une variable en python il suffit de faire : variable et la manipuler. Pour créer une variable en python il
suffit de faire :
</p> </p>
<code style="font-size: 18px">x = 1</code> <code style="font-size: 18px">x = 1</code>
<br /><br /> <br /><br />
@ -82,7 +91,8 @@
<code style="font-size: 18px">x = x * 2</code><br /> <code style="font-size: 18px">x = x * 2</code><br />
<code style="font-size: 18px">x = x / 2</code><br /> <code style="font-size: 18px">x = x / 2</code><br />
<code style="font-size: 18px">x = x - 1</code> <code style="font-size: 18px">x = x - 1</code>
<br /> <br /> <br />
<br />
<!-- Afficher x --> <!-- Afficher x -->
<p>Nous pouvons afficher la valeur de x en faisant :</p> <p>Nous pouvons afficher la valeur de x en faisant :</p>
<code style="font-size: 18px">print(x)</code> <code style="font-size: 18px">print(x)</code>
@ -109,7 +119,7 @@
print("La varible 'x' :", x) print("La varible 'x' :", x)
y=x+2 y=x+2
print("Le résultat de 'x+2' :", y) print("Le résultat de'x+2' :", y)
x=y*2 x=y*2
print("Le résultat de '(x+2)*2' :",x)</div> print("Le résultat de '(x+2)*2' :",x)</div>

@ -20,8 +20,11 @@
integrity="sha384-oesi62hOLfzrys4LxRF63OJCXdXDipiYWBnvTl9Y9/TRlw5xlKIEHpNyvvDShgf/" integrity="sha384-oesi62hOLfzrys4LxRF63OJCXdXDipiYWBnvTl9Y9/TRlw5xlKIEHpNyvvDShgf/"
crossorigin="anonymous" crossorigin="anonymous"
></script> ></script>
<link rel="stylesheet" href="../CSS/Main2.css">
</head> </head>
<body> <body>
<div class="container align-middle m-auto d-flex" style="background-image: url('../../assets/img/ImgMain.png')">
</div>
</body> </body>
</html> </html>

Loading…
Cancel
Save