Manque juste Modifier...
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
#root {
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
body {
|
||||
background-image: url('/public/images/blured_wool_carpet.png');
|
||||
background-color: gray;
|
||||
@@ -117,7 +121,7 @@ html {
|
||||
background-color: beige;
|
||||
}
|
||||
|
||||
.contact-form-input {
|
||||
.form-input {
|
||||
border: 3px solid rgba(0, 0, 0, .25);
|
||||
/* box-shadow: 1px 2px rgba(0, 0, 0, .25); */
|
||||
}
|
||||
@@ -206,22 +210,22 @@ html {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.item:hover{
|
||||
.item:hover {
|
||||
box-shadow: 10px 10px;
|
||||
top:-5px;
|
||||
left:-5px;
|
||||
top: -5px;
|
||||
left: -5px;
|
||||
background-color: beige;
|
||||
}
|
||||
|
||||
.item {
|
||||
|
||||
border:purple double 3px;
|
||||
border: purple double 3px;
|
||||
margin-left: 1.25%;
|
||||
margin-right: 1.25%;
|
||||
margin-bottom: 10px;
|
||||
background-color: rgba(245, 245, 220, 0.75);
|
||||
display: inline-block;
|
||||
height:300px;
|
||||
height: 300px;
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
@@ -229,21 +233,21 @@ html {
|
||||
padding-top: 2%;
|
||||
box-shadow: 5px 5px;
|
||||
border-radius: 2px;
|
||||
display:block;
|
||||
display: block;
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
height:50%;
|
||||
width:auto;
|
||||
height: 50%;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.item-info{
|
||||
height:50%;
|
||||
.item-info {
|
||||
height: 50%;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.item-name-container{
|
||||
height:45%;
|
||||
.item-name-container {
|
||||
height: 45%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
@@ -251,12 +255,12 @@ html {
|
||||
}
|
||||
|
||||
.item-name {
|
||||
margin:auto;
|
||||
margin: auto;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.item-status-container{
|
||||
height:40px;
|
||||
.item-status-container {
|
||||
height: 40px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
@@ -267,7 +271,7 @@ html {
|
||||
font-weight: normal;
|
||||
font-family: 'Courier New', Courier, monospace;
|
||||
width: fit-content;
|
||||
height:fit-content;
|
||||
height: fit-content;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding-left: 5px;
|
||||
@@ -279,64 +283,64 @@ html {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.item-status-available{
|
||||
color:green;
|
||||
.item-status-available {
|
||||
color: green;
|
||||
}
|
||||
|
||||
.item-status-backorder{
|
||||
color:yellow;
|
||||
.item-status-backorder {
|
||||
color: yellow;
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
.item-status-unavailable{
|
||||
color:red;
|
||||
.item-status-unavailable {
|
||||
color: red;
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
.item-status-clearence{
|
||||
color:blue;
|
||||
.item-status-clearence {
|
||||
color: blue;
|
||||
background-color: aliceblue;
|
||||
font-size: large;
|
||||
border: yellow 2px groove;
|
||||
}
|
||||
|
||||
.item-status-promotion{
|
||||
color:purple;
|
||||
.item-status-promotion {
|
||||
color: purple;
|
||||
font-size: medium;
|
||||
background-color: aliceblue;
|
||||
border: yellow 2px groove;
|
||||
}
|
||||
|
||||
.item-status-discontinued{
|
||||
color:white;
|
||||
.item-status-discontinued {
|
||||
color: white;
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
.item-price-container{
|
||||
.item-price-container {
|
||||
height: fit-content;
|
||||
width: auto;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.item-price{
|
||||
color:green;
|
||||
.item-price {
|
||||
color: green;
|
||||
font-weight: bold;
|
||||
font-size: large;
|
||||
height:auto;
|
||||
margin:auto;
|
||||
height: auto;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.item-old-price{
|
||||
position:relative;
|
||||
color:black;
|
||||
.item-old-price {
|
||||
position: relative;
|
||||
color: black;
|
||||
text-decoration: line-through;
|
||||
font-weight: normal;
|
||||
font-size: small;
|
||||
height:auto;
|
||||
height: auto;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.item-new-price{
|
||||
.item-new-price {
|
||||
font-size: large;
|
||||
margin-left: 10px;
|
||||
font-weight: bolder;
|
||||
@@ -345,40 +349,114 @@ html {
|
||||
|
||||
}
|
||||
|
||||
.item-link, .item-link:hover{
|
||||
.item-link,
|
||||
.item-link:hover {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.btn {
|
||||
display: inline-block;
|
||||
background: #000;
|
||||
color: #fff;
|
||||
border: none;
|
||||
padding: 10px 20px;
|
||||
margin: 5px;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
text-decoration: none;
|
||||
font-size: 15px;
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
.btn-primary{
|
||||
.btn-primary {
|
||||
background-color: purple;
|
||||
color:beige;
|
||||
color: beige;
|
||||
border-color: darkslateblue;
|
||||
}
|
||||
|
||||
.btn-primary:hover{
|
||||
.btn-primary:hover {
|
||||
background-color: plum !important;
|
||||
border-color: purple !important;
|
||||
color:darkslateblue !important;
|
||||
color: darkslateblue !important;
|
||||
}
|
||||
|
||||
.btn-load-more{
|
||||
.btn-load-more {
|
||||
display: block;
|
||||
margin-left:auto;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-top:10px;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
width:85%;
|
||||
width: 85%;
|
||||
}
|
||||
|
||||
.privacy {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.morceaux {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.inventaire {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 1.25%;
|
||||
padding: 1.25%;
|
||||
color:purple;
|
||||
background-color: beige;
|
||||
border: purple solid 3px;;
|
||||
}
|
||||
|
||||
.inventaire-form-container {
|
||||
padding: 3% 5% 3% 5%;
|
||||
color: black;
|
||||
background-color: beige;
|
||||
margin: 1.25%;
|
||||
}
|
||||
|
||||
.inventaire-item {
|
||||
border: purple double 3px;
|
||||
margin-left: 1.25%;
|
||||
margin-right: 1.25%;
|
||||
margin-bottom: 10px;
|
||||
background-color: rgba(245, 245, 220, 0.75);
|
||||
display: inline-block;
|
||||
height: auto;
|
||||
width: 97.5%;
|
||||
}
|
||||
|
||||
|
||||
.inventaire-item>h3 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.dropdown-gestion,
|
||||
.dropdown-gestion:hover {
|
||||
color: black;
|
||||
background-color: beige !important;
|
||||
border-color: transparent !important;
|
||||
}
|
||||
|
||||
.dropdown-gestion-menu {
|
||||
border: purple solid 2px;
|
||||
background-color: beige;
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------------------------- */
|
||||
/* specification pour les moyennes écrans
|
||||
/* -------------------------------------------------------- */
|
||||
@media(max-width:900px){
|
||||
.item{
|
||||
width:45%;
|
||||
@media(max-width:900px) {
|
||||
.item {
|
||||
width: 45%;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -389,8 +467,8 @@ html {
|
||||
|
||||
@media (max-width:450px) {
|
||||
|
||||
.item{
|
||||
width:85%;
|
||||
.item {
|
||||
width: 85%;
|
||||
}
|
||||
|
||||
.featured-img {
|
||||
@@ -425,7 +503,6 @@ html {
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
|
||||
.contact-info-container {
|
||||
padding-top: 5%;
|
||||
}
|
||||
@@ -434,5 +511,4 @@ html {
|
||||
margin: 5px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user