Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Relie le fichier CSS -->
<link rel="stylesheet" href="style.css">
<title>Alan Turing</title>
</head>
<body style="display: flex;">
<!----------Navigation---------->
<header>

<div class="icon-nav"></div>
<ul class="header-list">
<li style="background-color: #1F1F1F;"><a href="./index.html">Accueil</a></li>
Expand All @@ -25,9 +28,11 @@
<li><a href="./source.html">Sources</a></li>
</ul>
</header>
<!----------Navigation---------->

<main class="main-accueil">
<img class="accueil-img" src="./imgs/alan_background.jpg" alt="">

<section class="accueil">
<div>
<p>Alan Turing the father of modern computer science and artificial intelligence</p>
Expand Down
3 changes: 3 additions & 0 deletions introduction.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Relie le fichier CSS -->
<link rel="stylesheet" href="style.css">
<title>Introduction</title>
</head>
<body style="display: flex;">
<!----------Navigation---------->
<header>
<div class="icon-nav"></div>
<ul class="header-list">
Expand All @@ -26,6 +28,7 @@
<li><a href="./source.html">Sources</a></li>
</ul>
</header>
<!----------Navigation---------->
<main class="introduction">
<section>
<div>
Expand Down
4 changes: 3 additions & 1 deletion oeuvres.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Relie le fichier CSS -->
<link rel="stylesheet" href="style.css">
<title>Oeuvres</title>
</head>

<body style="display: flex;">
<!----------Navigation---------->
<header>
<div class="icon-nav"></div>
<ul class="header-list">
Expand All @@ -27,7 +29,7 @@
<li><a href="./source.html">Sources</a></li>
</ul>
</header>

<!----------Navigation---------->
<main class="main-oeuvres">

<figure id="ch1">
Expand Down
5 changes: 4 additions & 1 deletion source.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Relie le fichier CSS -->
<link rel="stylesheet" href="style.css">
<title>Alan Turing</title>
</head>
<body style="display: flex;">
<!----------Navigation---------->
<header>
<div class="icon-nav"></div>
<ul class="header-list">
Expand All @@ -25,11 +27,12 @@
<li style="background-color: #1F1F1F;" > <a href="./source.html">Sources</a></li>
</ul>
</header>
<!----------Navigation---------->
<main class="Sources">
<section>

<header>
<!-- <h1>sources</h1> -->

<h1> Réference </h1>
</header>

Expand Down
58 changes: 0 additions & 58 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -540,23 +540,7 @@ main .accueil img{
font-size: 2.5em;
}

/* p,h4,h1,h2 {
animation-name: slide-in;
animation-duration: 2s;
animation-fill-mode: forwards;
}

@keyframes slide-in {
from {
transform: translateX(-100%);
opacity: 0;
}

to {
transform: translateX(0);
opacity: 1;
}
} */

/*============================================ Oeuvres ============================================*/

Expand Down Expand Up @@ -635,48 +619,6 @@ main .accueil img{

/*============================================ Sources ============================================*/

/*Arrow up*/
/* main .btn-up{
position: fixed;
right: 20px;
bottom: 20px;
height: 40px;
width: 40px;
cursor: pointer;
background-color: #ccc;
border-radius: 50%;
}
main .btn-up .arrow-up{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}

main .btn-up .arrow-up:nth-of-type(2){
top: calc(50% + 8px);
}
main .arrow-up::before{
content: '';
position: absolute;
top: calc(50% - 12px);
left: 50%;
transform: translate(-50%, -50%);
border-style: solid;
border-width: 15px;
border-color: transparent transparent #484848 transparent;
}

main .arrow-up::after{
content: '';
position: absolute;
top: calc(50% - 8px);
left: 50%;
transform: translate(-50%,-50%);
border-style: solid;
border-width: 15px;
border-color: transparent transparent white transparent;
} */


/*============================================ MAIN ============================================*/
Expand Down