Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Vital-Vuillaume committed Feb 4, 2024
1 parent f70c65f commit bc9a8f8
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 8 deletions.
69 changes: 63 additions & 6 deletions My-Website.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

body {

background-color: rgb(230, 230, 230);
background-color: rgb(210, 210, 210);
min-height: 100vh;

}
Expand Down Expand Up @@ -555,10 +555,13 @@ body.active ::placeholder, body.active ::-moz-placeholder {

.imgShortcut {

width: 67px;
height: 67px;
width: 170px;
height: 170px;
display: block;
margin: 0 auto;
position: relative;
top: 60px;
transition: 1.8s

}

Expand All @@ -576,17 +579,46 @@ body.active ::placeholder, body.active ::-moz-placeholder {
.shortcut {

background-color: white;
padding: 40px 20px 40px 20px;
display: flex;
justify-content: center;
flex-direction: column;
gap: 30px;
border-radius: 15px;
border: 1px var(--couleur) solid;
width: 380px;
width: 360px;
height: 330px;
overflow: hidden;

}

.shortcut:hover .imgShortcut {

top: 0px;
width: 67px;
height: 67px;

}

.shortcut:hover .paraShortcut {

visibility: visible;
opacity: 1;

}

.shortcut:hover .lienShortcut {

visibility: visible;
opacity: 1;

}

.shortcut:hover .titreShortcut {

top: 0px;

}

.lienShortcut:hover {

color: red;
Expand All @@ -601,14 +633,28 @@ body.active ::placeholder, body.active ::-moz-placeholder {
width: max-content;
display: block;
margin: 0 auto;
transition: 2s;
transition: 2.3s;
visibility: hidden;
opacity: 0;

}

.paraShortcut {

visibility: hidden;
opacity: 0;
transition: 2.3s;
padding: 0px 10px 0px 10px;

}

.titreShortcut {

font-size: 1.8em;
font-weight: 600;
position: relative;
top: 50px;
transition: 1.8s;

}

Expand Down Expand Up @@ -816,6 +862,17 @@ body.active ::placeholder, body.active ::-moz-placeholder {
background-color: transparent;

}

.img {
transition: 0.2s;
}

.img:active {

transform: scale(0.8);
transition: 0.2s;

}

.txt {

Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,13 @@
<div class="shortcut">
<img class="imgShortcut" src="ubuntu.png" alt="Ubuntu">
<p class="titreShortcut">Ubuntu</p>
<p>Sauvegarder-le exécutez "My-Website-Shortcut-Ubuntu.sh".</p>
<p class="paraShortcut">Sauvegarder-le exécutez "My-Website-Shortcut-Ubuntu.sh".</p>
<a class="lienShortcut" href="My-Website-Shortcut-Ubuntu.zip">Télécharger pour ubuntu</a>
</div>
<div class="shortcut">
<img class="imgShortcut" src="windows.png" alt="Windows">
<p class="titreShortcut">Windows</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Rem.</p>
<a class="paraShortcut">Lorem ipsum dolor sit amet consectetur adipisicing elit. Rem.</p>
<a class="lienShortcut" href="Attente.zip">attente</a>
</div>
</div>
Expand Down

0 comments on commit bc9a8f8

Please sign in to comment.