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
class="row rounded p-3 m-3"
style="
background: #16222a; /* fallback for old browsers */
background: -webkit-linear-gradient(
to right,
#3a6073,
#16222a
); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #3a6073, #16222a);
background-image: linear-gradient(
to left,
#312c42,
#2e2a3d,
#2a2738,
#272434,
#24222f,
#22202c,
#1f1f29,
#1d1d26,
#1b1b23,
#191a21,
#17181e,
#15161c
);
"
>
<div class="row">
@ -64,7 +72,8 @@
>
<p>
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>
<code style="font-size: 18px">x = 1</code>
<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 - 1</code>
<br /> <br />
<br />
<br />
<!-- Afficher x -->
<p>Nous pouvons afficher la valeur de x en faisant :</p>
<code style="font-size: 18px">print(x)</code>
@ -109,7 +119,7 @@
print("La varible 'x' :", x)
y=x+2
print("Le résultat de 'x+2' :", y)
print("Le résultat de'x+2' :", y)
x=y*2
print("Le résultat de '(x+2)*2' :",x)</div>

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

Loading…
Cancel
Save