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 5, 2024
1 parent aa418a3 commit dffd4c6
Showing 1 changed file with 28 additions and 22 deletions.
50 changes: 28 additions & 22 deletions My-Website.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

body {

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

}
Expand Down Expand Up @@ -274,6 +274,10 @@ img, .custom-menu {

}

/*---------------------------
--------Page accueil---------
---------------------------*/

/*---------------------------
-------Page recherche--------
---------------------------*/
Expand Down Expand Up @@ -310,24 +314,20 @@ img, .custom-menu {
margin-top: 18px;
border-radius: 13px;
border: 1px var(--couleur) solid;
animation: slide linear;
animation: slide 10s linear;
animation-timeline: view();
animation-range-start: cover 0%;
animation-range-end: cover 30%;

}
animation-range-end: cover 70%;

.category:last-child {
margin-bottom: 15vh;
}

@keyframes slide {

from {
0% {
transform: translateY(100%);
opacity: 0;
}
to {
20% {
transform: translateY(0);
opacity: 1;
}
Expand Down Expand Up @@ -400,7 +400,7 @@ img, .custom-menu {

.no-results {

font-size: 1.2em;
font-size: 1em;
color: red;
margin-top: 15px;

Expand Down Expand Up @@ -429,12 +429,6 @@ img, .custom-menu {

}

/*---------------------------
--------Page accueil---------
---------------------------*/



/*---------------------------
-------Page parametres-------
---------------------------*/
Expand All @@ -443,14 +437,16 @@ img, .custom-menu {

body.active {

background-color: #242231;
background: rgb(36,34,49);
background: linear-gradient(90deg, rgba(36,34,49,1) 0%, rgba(30,29,42,1) 100%);
color: white;

}

body.active .nav, body.active .ligne, body.active .btn::before, body.active .recherche, body.active .category, body.active .lienRecherche, body.active .btnParametres, body.active .shortcut {
body.active .nav, body.active .ligne, body.active .btn::before, body.active .recherche, body.active .category, body.active .btnParametres, body.active .shortcut {

background-color: #292837;
background-color: #29283763;
backdrop-filter: blur(10px);
color: white;

}
Expand All @@ -467,6 +463,12 @@ body.active .btn::after {

}

body.active .lienRecherche {

color: white;

}

body.active ::placeholder, body.active ::-moz-placeholder {

color: rgb(185, 185, 185);
Expand Down Expand Up @@ -554,7 +556,6 @@ body.active ::placeholder, body.active ::-moz-placeholder {

text-align: center;
background-color: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(8px);
z-index: 2000;
border-radius: 20px;
width: max-content;
Expand Down Expand Up @@ -606,8 +607,8 @@ body.active ::placeholder, body.active ::-moz-placeholder {
gap: 30px;
border-radius: 15px;
border: 1px var(--couleur) solid;
width: 360px;
height: 330px;
width: 330px;
height: 310px;
overflow: hidden;

}
Expand Down Expand Up @@ -833,10 +834,13 @@ body.active ::placeholder, body.active ::-moz-placeholder {
bottom: 0;
height: 65px;
width: 100vw;
backdrop-filter: blur(0px);
display: flex;
justify-content: center;
gap: 20%;
background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255, 0, 0, 0) 100%);
border-radius: unset;
background-color: red;

}

Expand Down Expand Up @@ -952,6 +956,8 @@ body.active ::placeholder, body.active ::-moz-placeholder {
body.active .nav {

background: linear-gradient(0deg, rgba(36,34,49,1) 0%, rgba(36,34,49,0.1) 100%);
background-color: red;
backdrop-filter: blur(0px);

}

Expand Down

0 comments on commit dffd4c6

Please sign in to comment.