1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
KyFlo/Assets/css.css

765 lines
12 KiB
CSS
Raw Normal View History

2019-11-20 11:56:44 +01:00
/*204, 25, 25*/
2019-11-27 10:36:44 +01:00
2019-11-20 11:56:44 +01:00
/*==========================================================================================*/
2019-11-27 10:36:44 +01:00
2019-11-23 13:44:49 +01:00
/*BODY + GENERAL*/
2019-11-27 10:36:44 +01:00
body {
2019-11-27 11:55:38 +01:00
background-color: rgb(0, 0, 0);
background-image: linear-gradient(rgba(107, 6, 6, 0.5) 2px, transparent 2px), linear-gradient(90deg, rgba(80, 7, 7, 0.5) 2px, transparent 2px), linear-gradient(rgba(61, 61, 61, 0.28) 1px, transparent 1px), linear-gradient(90deg, rgba(63, 63, 63, 0.28) 1px, transparent 1px);
background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
2019-11-23 13:44:49 +01:00
margin: 0;
2019-11-23 15:49:48 +01:00
font-family: 'Roboto', sans-serif;
2019-11-20 11:09:01 +01:00
}
2019-11-23 13:44:49 +01:00
2019-11-27 10:36:44 +01:00
#content {
2019-11-23 13:44:49 +01:00
margin-left: 8vw;
margin-right: 8vw;
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
h1 {
2019-12-04 09:54:26 +01:00
font-size: 2vw;
2019-11-27 10:36:44 +01:00
color: white;
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
body>#bienvenue>h1 {
2019-12-04 09:54:26 +01:00
font-size: 2vw;
2019-11-27 10:36:44 +01:00
color: white;
text-align: center;
2019-11-23 13:44:49 +01:00
}
2019-11-27 10:36:44 +01:00
body>#bienvenue>h2 {
2019-12-04 09:54:26 +01:00
font-size: 1.5vw;
2019-11-27 10:36:44 +01:00
color: lightgrey;
2019-11-23 13:44:49 +01:00
text-align: center;
}
2019-11-23 15:49:48 +01:00
2019-11-27 10:36:44 +01:00
button#hautPage {
2019-11-23 15:49:48 +01:00
position: fixed;
z-index: 1;
left: 95%;
top: 90%;
padding: 1vw 1vw;
background-color: rgba(0, 0, 0, 0.5);
2019-11-27 10:36:44 +01:00
border: 0.1vw solid rgb(204, 25, 25);
2019-11-23 15:49:48 +01:00
color: white;
}
2019-11-27 10:36:44 +01:00
button#hautPage>img {
width: 2vw;
2019-11-23 15:49:48 +01:00
}
2019-11-23 13:44:49 +01:00
/*=====================================*/
2019-11-27 10:36:44 +01:00
2019-11-23 13:44:49 +01:00
/*NAVBAR*/
2019-11-27 10:36:44 +01:00
a#kyflo {
font-size: 3vw;
2019-11-23 13:44:49 +01:00
color: rgb(204, 25, 25);
padding: 0.5vw 1vw;
transform: none;
2019-11-27 10:36:44 +01:00
border: none;
2019-12-04 09:54:26 +01:00
2019-11-23 13:44:49 +01:00
}
2019-11-27 10:36:44 +01:00
a#nous {
2019-11-23 13:44:49 +01:00
border-right: 0.15vw solid rgb(204, 25, 25);
border-left: 0.15vw solid rgb(204, 25, 25);
}
#panier {
2019-11-27 10:36:44 +01:00
float: right;
width: 9%;
padding: 1.2vw 1vw;
border-left: 0.15vw solid rgb(204, 25, 25);
2019-11-27 10:36:44 +01:00
margin-right: -6%;
2019-11-23 13:44:49 +01:00
}
2019-12-04 09:54:26 +01:00
a#panier>h3{
margin-top :0.5vw;
margin-bottom: 0;
2019-12-04 11:57:53 +01:00
color: white;
2019-12-04 09:54:26 +01:00
}
2019-11-27 10:36:44 +01:00
#loupe {
float: right;
display: block;
color: rgb(255, 255, 255);
text-align: center;
margin-top: 1.2vw;
margin-right: 2vw;
2019-11-27 10:36:44 +01:00
padding: 0.5vw;
border: 0.1vw solid rgb(204, 25, 25);
text-decoration: none;
2019-11-27 10:36:44 +01:00
font-size: 1vw;
font-weight: bold;
transform: none;
border-left: none;
background-color: rgb(204, 25, 25);
}
2019-11-27 10:36:44 +01:00
#loupe:hover {
color: rgb(0, 0, 0);
transition-duration: 0.2s;
}
2019-11-23 13:44:49 +01:00
.topnav {
overflow: hidden;
2019-11-20 11:56:44 +01:00
background-color: rgba(22, 22, 22, 0.61);
2019-12-04 09:54:26 +01:00
border-bottom: 0.15vw solid rgb(204, 25, 25);
2019-11-20 11:09:01 +01:00
}
2019-11-23 13:44:49 +01:00
.topnav a {
float: left;
display: block;
color: rgb(255, 255, 255);
text-align: center;
2019-11-27 10:36:44 +01:00
padding: 1.8vw 1.4vw;
2019-11-23 13:44:49 +01:00
text-decoration: none;
2019-11-27 10:36:44 +01:00
font-size: 1vw;
2019-11-23 13:44:49 +01:00
border-right: 0.15vw solid rgb(204, 25, 25);
font-weight: bold;
transform: skew(-0.2rad);
}
.topnav a:hover {
background-color: rgb(204, 25, 25);
color: rgb(0, 0, 0);
}
2019-11-27 10:36:44 +01:00
.topnav a#nous:hover,
a#contactN:hover {
padding: 1.8vw 2.5vw;
2019-11-23 13:44:49 +01:00
}
2019-11-27 10:36:44 +01:00
.topnav a#kyflo:hover {
2019-11-23 13:44:49 +01:00
color: white;
background-color: rgb(22, 22, 22);
}
2019-11-27 10:36:44 +01:00
.topnav a#panier:hover {
2019-11-23 13:44:49 +01:00
background-color: black;
2019-11-27 10:36:44 +01:00
margin-right: -2%;
2019-11-23 13:44:49 +01:00
}
2019-12-04 11:57:53 +01:00
2019-11-23 13:44:49 +01:00
.topnav input[type=text] {
float: right;
2019-11-27 10:36:44 +01:00
padding: 0.5vw;
width: 40%;
2019-11-23 13:44:49 +01:00
border: 0.1vw solid rgb(204, 25, 25);
2019-11-27 10:36:44 +01:00
font-size: 1vw;
2019-11-23 13:44:49 +01:00
margin-top: 1.2vw;
background-color: rgb(22, 22, 22);
}
/*======================================*/
2019-11-27 10:36:44 +01:00
2019-11-23 13:44:49 +01:00
/*FOOTER*/
2019-11-23 15:49:48 +01:00
2019-11-27 10:36:44 +01:00
footer {
2019-11-23 15:49:48 +01:00
margin-top: 8vw;
2019-12-04 09:54:26 +01:00
bottom: 0;
2019-11-23 15:49:48 +01:00
}
2019-11-27 10:36:44 +01:00
footer>div>table {
2019-11-23 13:44:49 +01:00
width: 100%;
2019-11-27 10:36:44 +01:00
border-top: 0.1vw solid rgb(204, 25, 25);
2019-11-23 13:44:49 +01:00
background-color: rgb(27, 27, 27);
2019-11-27 10:36:44 +01:00
margin: auto;
2019-12-04 11:57:53 +01:00
padding: 0vw 8vw;
2019-11-23 13:44:49 +01:00
}
2019-11-27 10:36:44 +01:00
a {
2019-11-23 13:44:49 +01:00
text-decoration: none;
2019-11-27 10:36:44 +01:00
color: grey;
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
a:hover {
color: rgb(204, 25, 25);
2019-11-23 13:44:49 +01:00
transition-duration: 0.4s;
}
2019-11-20 11:09:01 +01:00
2019-11-27 10:36:44 +01:00
tr {
2019-11-23 13:44:49 +01:00
border-bottom: 0.2vw solid red;
color: white;
height: 5vw;
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
th {
2019-11-23 13:44:49 +01:00
font-size: 2vw;
2019-11-27 10:36:44 +01:00
text-align: left;
2019-11-23 13:44:49 +01:00
border-bottom: 0.1vw solid white;
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
th#line {
2019-11-23 13:44:49 +01:00
border: none;
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
button#contactB {
2019-11-23 13:44:49 +01:00
margin: auto;
display: flex;
justify-content: center;
padding: 1.5vw 4vw;
font-size: 1.5vw;
2019-11-27 10:36:44 +01:00
color: lightgrey;
2019-11-23 13:44:49 +01:00
background-color: rgb(27, 27, 27);
2019-11-27 10:36:44 +01:00
border: 0.1vw solid rgb(204, 25, 25);
2019-11-23 13:44:49 +01:00
transform: skew(-.312rad);
margin-bottom: 2vw;
2019-11-20 11:09:01 +01:00
}
2019-11-23 13:44:49 +01:00
2019-11-27 10:36:44 +01:00
button#contactB:hover {
2019-11-23 13:44:49 +01:00
background-color: rgb(204, 25, 25);
transition-duration: 0.5s;
border-radius: 1vw;
}
2019-11-27 10:36:44 +01:00
td {
2019-11-23 13:44:49 +01:00
width: 20%;
font-size: 1.5vw;
}
2019-11-27 10:36:44 +01:00
td#contact {
2019-11-23 13:44:49 +01:00
width: 100%;
}
2019-11-27 10:36:44 +01:00
2019-11-23 13:44:49 +01:00
/*======================================*/
2019-11-27 10:36:44 +01:00
/*FLEX CONTAINER*/
.flex-container {
display: flex;
flex-wrap: wrap;
}
2019-11-23 13:44:49 +01:00
2019-11-27 10:36:44 +01:00
.flex-container>div {
background-color: rgba(59, 59, 59, 0.5);
2019-12-04 09:54:26 +01:00
width: 30%;
margin: 1vw;
text-align: center;
2019-12-04 09:54:26 +01:00
line-height: 3vw;
font-size: 30px;
}
2019-11-27 10:36:44 +01:00
.flex-container>div>a>h3 {
text-align: left;
2019-12-04 09:54:26 +01:00
font-size: 2vw;
margin-left: 35%;
2019-11-27 10:36:44 +01:00
color: lightgrey;
}
2019-11-27 10:36:44 +01:00
.flex-container>div>a>h4 {
text-align: left;
2019-12-04 09:54:26 +01:00
font-size: 1.5vw;
margin-left: 35%;
2019-11-27 10:36:44 +01:00
color: lightgrey;
}
2019-11-27 10:36:44 +01:00
.flex-container>div>a>img {
width: 30%;
margin-top: 10%;
}
2019-11-27 10:36:44 +01:00
2019-12-04 09:54:26 +01:00
2019-11-27 11:55:38 +01:00
2019-11-27 10:36:44 +01:00
2019-11-20 11:09:01 +01:00
/*==========================================*/
2019-11-27 10:36:44 +01:00
/*CONFIRMATION COMMENTAIRE*/
2019-11-27 10:36:44 +01:00
#Merci>h1 {
2019-11-20 11:09:01 +01:00
font-size: 2.8vw;
2019-11-27 10:36:44 +01:00
color: white;
text-align: center;
2019-11-20 11:09:01 +01:00
margin-top: 7%;
}
2019-11-27 10:36:44 +01:00
#Merci>h2 {
2019-11-20 11:09:01 +01:00
font-size: 2vw;
2019-11-27 10:36:44 +01:00
text-align: center;
2019-11-20 11:09:01 +01:00
margin-top: 5%;
}
2019-11-27 10:36:44 +01:00
#Merci>h2>a {
color: lightgrey;
2019-11-20 11:09:01 +01:00
text-decoration: none;
}
2019-11-27 10:36:44 +01:00
#Merci>h2>a:hover {
color: rgb(204, 25, 25);
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
#Merci>img {
2019-11-23 15:49:48 +01:00
display: block;
margin-left: auto;
margin-right: auto;
2019-11-27 10:36:44 +01:00
width: 10%;
2019-11-20 11:09:01 +01:00
margin-top: 5%;
2019-11-27 10:36:44 +01:00
float: none;
2019-11-20 11:09:01 +01:00
}
/*==========================================*/
2019-11-27 10:36:44 +01:00
2019-11-20 11:09:01 +01:00
/*==========================================*/
2019-11-27 10:36:44 +01:00
2019-11-23 15:49:48 +01:00
/* CSS DESCRIPTION PRODUIT */
2019-11-27 10:36:44 +01:00
2019-11-20 11:09:01 +01:00
/*EN TETE PRODUIT*/
2019-11-27 10:36:44 +01:00
#Produit {
2019-11-20 11:09:01 +01:00
margin-top: 5%;
}
2019-11-27 10:36:44 +01:00
#Produit>h1 {
text-align: left;
font-size: 4vw;
margin-left: 25%;
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
#Produit>h2#barre {
text-decoration: line-through;
}
2019-11-27 10:36:44 +01:00
#Produit>h2 {
2019-11-20 11:09:01 +01:00
text-align: left;
2019-11-27 10:36:44 +01:00
font-size: 3vw;
2019-11-20 11:09:01 +01:00
margin-left: 25%;
2019-11-27 10:36:44 +01:00
color: red;
}
2019-11-20 11:09:01 +01:00
2019-11-27 10:36:44 +01:00
#Produit>h2#barre {
2019-11-20 11:09:01 +01:00
text-decoration: line-through;
}
2019-11-27 10:36:44 +01:00
#Produit>h3 {
2019-11-20 11:09:01 +01:00
text-align: left;
2019-11-27 10:36:44 +01:00
font-size: 1.5vw;
2019-11-20 11:09:01 +01:00
margin-left: 25%;
2019-11-27 10:36:44 +01:00
color: lightgrey;
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
#Produit>img {
2019-11-20 11:09:01 +01:00
width: 20%;
float: left;
2019-11-23 13:44:49 +01:00
border: 0.2vw solid rgb(204, 25, 25);
2019-11-20 11:09:01 +01:00
border-radius: 10px;
background-color: rgba(0, 0, 0, 0.5);
2019-11-27 10:36:44 +01:00
}
2019-11-20 11:09:01 +01:00
2019-11-27 10:36:44 +01:00
#Produit>button {
2019-11-20 11:09:01 +01:00
background-color: rgba(0, 0, 0, 0.5);
2019-11-27 10:36:44 +01:00
padding: 1vw 1vw;
float: right;
text-align: center;
font-size: 2vw;
2019-11-20 11:09:01 +01:00
margin-right: 10%;
color: white;
2019-11-27 10:36:44 +01:00
border: 0.1vw solid rgb(204, 25, 25);
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
#Produit>button:hover {
2019-11-23 13:44:49 +01:00
color: white;
2019-11-27 10:36:44 +01:00
background-color: rgba(204, 25, 25, 0.5);
2019-11-20 11:09:01 +01:00
transition-duration: 0.5s;
border-radius: 2vw;
}
2019-11-27 10:36:44 +01:00
2019-11-23 15:49:48 +01:00
/*=====================*/
2019-11-27 10:36:44 +01:00
2019-11-23 15:49:48 +01:00
/* MOSAIQUE PRODUITS*/
2019-11-27 10:36:44 +01:00
#produits {
2019-11-23 15:49:48 +01:00
border: 0.1vw solid red;
2019-11-27 10:36:44 +01:00
background-color: rgba(0, 0, 0, 0.5);
2019-12-04 09:54:26 +01:00
margin-top: 3vw;
padding: 2vw 2vw;
2019-11-23 15:49:48 +01:00
}
2019-11-23 13:44:49 +01:00
2019-11-27 10:36:44 +01:00
img {
2019-11-23 13:44:49 +01:00
width: 30%;
float: left;
}
2019-11-27 10:36:44 +01:00
h3,
h4 {
2019-11-23 13:44:49 +01:00
color: white;
}
2019-11-27 10:36:44 +01:00
h3:hover {
2019-11-23 13:44:49 +01:00
color: rgb(204, 25, 25);
2019-11-23 15:49:48 +01:00
transition-duration: 0.2s;
2019-11-23 13:44:49 +01:00
}
2019-11-27 10:36:44 +01:00
2019-11-20 11:09:01 +01:00
/*================================================*/
2019-11-27 10:36:44 +01:00
2019-11-20 11:09:01 +01:00
/*CARACTERISTIQUES PRODUIT*/
2019-11-27 10:36:44 +01:00
#Carac {
width: 100%;
border-top: 0.2vw solid rgb(204, 25, 25);
2019-11-20 11:09:01 +01:00
margin-top: 8%;
}
2019-11-27 10:36:44 +01:00
#Carac>h1 {
2019-11-20 11:09:01 +01:00
font-size: 3vw;
2019-11-27 10:36:44 +01:00
color: white;
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
#Carac>h2 {
2019-11-20 11:09:01 +01:00
font-size: 1.5vw;
2019-11-27 10:36:44 +01:00
color: lightgrey;
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
2019-11-20 11:09:01 +01:00
/*================================================*/
2019-11-27 10:36:44 +01:00
2019-11-20 11:09:01 +01:00
/*COMMENTAIRES CLIENT*/
2019-11-27 10:36:44 +01:00
#Client {
width: 100%;
2019-11-20 11:09:01 +01:00
margin-left: 5%;
}
2019-11-27 10:36:44 +01:00
#Client>div>h1 {
font-size: 2vw;
color: white;
2019-11-20 11:09:01 +01:00
margin-left: 8%;
}
#Client>div>h2 {
2019-11-27 10:36:44 +01:00
font-size: 1vw;
color: yellow;
2019-11-20 11:09:01 +01:00
margin-left: 8%;
}
#Client>div>h3 {
2019-11-27 10:36:44 +01:00
font-size: 1.5vw;
color: lightgrey;
2019-11-20 11:09:01 +01:00
margin-left: 8%;
}
2019-11-27 10:36:44 +01:00
#Client>div>img {
float: left;
2019-11-20 11:09:01 +01:00
width: 7%;
2019-11-27 11:55:38 +01:00
border-radius: 50%;
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
#Client>div {
2019-11-20 11:09:01 +01:00
margin-bottom: 3%;
2019-11-23 15:49:48 +01:00
border-bottom: 0.1vw solid rgb(134, 134, 134);
margin-right: 8%;
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
2019-11-20 11:09:01 +01:00
/*================================================*/
2019-11-27 10:36:44 +01:00
2019-11-20 11:09:01 +01:00
/*ESPACE LAISSER COMMENTAIRE*/
2019-11-27 10:36:44 +01:00
#Coms {
2019-12-04 11:57:53 +01:00
width: 95%;
2019-11-27 10:36:44 +01:00
border-top: 0.2vw solid rgb(204, 25, 25);
2019-11-20 11:09:01 +01:00
margin-top: 5%;
padding: 2vw 2vw;
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
#Coms>h1 {
2019-11-20 11:09:01 +01:00
font-size: 3vw;
2019-11-27 10:36:44 +01:00
color: white;
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
#Coms>h2 {
2019-11-20 11:09:01 +01:00
font-size: 3vw;
color: white;
2019-11-23 15:49:48 +01:00
border-top: 0.2vw dashed rgb(204, 25, 25);
2019-11-20 11:09:01 +01:00
text-align: center;
}
2019-11-27 10:36:44 +01:00
#Coms {
background-color: rgba(0, 0, 0, 0.5);
border: 0.1vw solid rgb(204, 25, 25);
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
#Coms>form>h1 {
2019-11-20 11:09:01 +01:00
font-size: 1.5vw;
2019-11-27 10:36:44 +01:00
color: white;
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
input,
select {
2019-11-20 11:09:01 +01:00
width: 20%;
padding: 1vw 1vw;
font-size: 1.5vw;
2019-11-23 13:44:49 +01:00
background-color: rgb(27, 27, 27);
2019-11-20 11:09:01 +01:00
color: white;
2019-11-27 10:36:44 +01:00
border: 0.1vw solid rgba(255, 255, 255, 0.5);
2019-11-20 11:09:01 +01:00
border-radius: 3vw;
}
2019-11-27 10:36:44 +01:00
input:hover {
2019-11-20 11:09:01 +01:00
border-radius: 0vw;
transition-duration: 0.5s;
}
2019-11-27 10:36:44 +01:00
input:valid {
2019-11-20 11:09:01 +01:00
border-radius: 0vw;
transition-duration: 0.5s;
2019-11-27 10:36:44 +01:00
border: 0.1vw solid rgb(8, 170, 8);
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
input[placeholder=Commentaire],
select,
input[placeholder="Question, suggestion, remarque"],
select {
2019-11-20 11:09:01 +01:00
width: 60%;
padding: 1vw 1vw;
font-size: 1.5vw;
}
2019-11-27 10:36:44 +01:00
input[type=submit],
select {
2019-11-20 11:09:01 +01:00
width: 20%;
padding: 1vw 1vw;
font-size: 1.5vw;
background-color: rgba(0, 0, 0, 0.5);
2019-11-27 10:36:44 +01:00
border: 0.15vw solid rgb(204, 25, 25);
color: white;
2019-11-23 15:49:48 +01:00
display: block;
margin-left: auto;
margin-right: auto;
2019-11-20 11:09:01 +01:00
}
input[type=submit]:hover {
2019-11-23 15:49:48 +01:00
color: rgb(255, 255, 255);
background-color: rgba(204, 25, 25, 0.5);
2019-11-20 11:09:01 +01:00
transition-duration: 0.5s;
2019-11-27 10:36:44 +01:00
border: 0.15vw solid rgb(0, 0, 0);
2019-11-20 11:09:01 +01:00
border-radius: 2vw;
}
2019-11-27 10:36:44 +01:00
h1#valider {
2019-11-23 15:49:48 +01:00
text-align: center;
}
2019-11-27 10:36:44 +01:00
table>tr>td>input {
2019-11-20 11:09:01 +01:00
border: 0vw solid white;
background-color: rgba(255, 255, 255, 0);
}
2019-11-27 10:36:44 +01:00
2019-11-20 11:09:01 +01:00
/*================================================*/
2019-11-27 10:36:44 +01:00
2019-11-20 11:09:01 +01:00
/*==========================================================================================*/
2019-11-27 10:36:44 +01:00
2019-11-20 11:09:01 +01:00
/*Slide des promotions*/
div#slider {
2019-11-27 10:36:44 +01:00
width: 100%;
2019-11-20 11:09:01 +01:00
max-width: 1920px;
margin: auto;
}
div#slider figure {
position: relative;
width: 500%;
margin: 0;
padding: 0;
font-size: 0;
text-align: left;
}
2019-11-27 10:36:44 +01:00
2019-11-20 11:09:01 +01:00
div#slider figure img {
width: 20%;
height: auto;
float: left;
}
2019-11-27 10:36:44 +01:00
2019-11-20 11:09:01 +01:00
div#slider {
width: 100%;
max-width: 1920px;
overflow: hidden
}
@keyframes slidy {
2019-11-27 10:36:44 +01:00
0% {
left: 0%;
}
20% {
left: 0%;
}
25% {
left: -100%;
}
45% {
left: -100%;
}
50% {
left: -200%;
}
70% {
left: -200%;
}
75% {
left: -300%;
}
95% {
left: -300%;
}
100% {
left: -400%;
}
2019-11-20 11:09:01 +01:00
}
2019-11-27 10:36:44 +01:00
2019-11-20 11:09:01 +01:00
div#slider figure {
position: relative;
width: 500%;
margin: 0;
padding: 0;
font-size: 0;
left: 0;
text-align: left;
animation: 16s slidy infinite;
}
2019-11-27 10:36:44 +01:00
2019-11-20 11:09:01 +01:00
/*==========================================================================================*/
2019-11-27 10:36:44 +01:00
2019-11-20 11:09:01 +01:00
/*Panier*/
2019-11-27 10:36:44 +01:00
form[action="commande.html"]>h1 {
2019-11-20 11:09:01 +01:00
font-size: 1.5vw;
}
2019-11-27 10:36:44 +01:00
form[action="commande.html"]>input[type=text],
select {
2019-11-20 11:09:01 +01:00
width: 50%;
padding: 1vw 1vw;
font-size: 1.5vw;
}
#livraison {
background-color: rgba(0, 0, 0, 0.5);
border: 0.1vw solid rgb(204, 25, 25);
margin-top: 5vw;
2019-11-23 13:44:49 +01:00
}
2019-11-27 10:36:44 +01:00
input[type=number],
select {
border: 0.1vw solid white;
2019-11-23 15:49:48 +01:00
}
2019-11-27 10:36:44 +01:00
table#basket {
2019-11-23 15:49:48 +01:00
margin-top: 5vw;
background-color: rgba(0, 0, 0, 0.5);
text-align: center;
border: 0.1vw solid rgb(204, 25, 25);
}
2019-11-27 10:36:44 +01:00
tr#cent>th {
text-align: center;
2019-11-23 15:49:48 +01:00
}
2019-11-27 10:36:44 +01:00
td#total {
2019-11-23 15:49:48 +01:00
text-align: right;
2019-11-27 10:36:44 +01:00
color: rgb(204, 25, 25);
2019-11-23 15:49:48 +01:00
font-size: 2vw;
font-weight: bold;
padding: 0vw 2vw;
}
2019-11-27 10:36:44 +01:00
2019-11-23 13:44:49 +01:00
/*=================================*/
2019-11-27 10:36:44 +01:00
2019-11-23 15:49:48 +01:00
/*CONTACT*/
2019-11-27 10:36:44 +01:00
#content>h1 {
2019-11-23 15:49:48 +01:00
text-align: center;
font-size: 3vw;
}
2019-11-27 10:36:44 +01:00
#content>form>h2 {
2019-11-23 15:49:48 +01:00
font-size: 1.5vw;
color: lightgrey;
}
2019-11-27 10:36:44 +01:00
table#reseaux {
2019-11-23 15:49:48 +01:00
width: 70%;
2019-11-27 10:36:44 +01:00
margin: auto;
2019-11-23 15:49:48 +01:00
}
2019-11-27 10:36:44 +01:00
tr#res>td {
2019-11-23 15:49:48 +01:00
text-align: center;
}
2019-11-27 10:36:44 +01:00
tr#res>td>a>img {
2019-11-23 15:49:48 +01:00
float: none;
}
2019-11-27 10:36:44 +01:00
2019-11-23 15:49:48 +01:00
/*===========================*/
2019-11-27 10:36:44 +01:00
2019-11-23 15:49:48 +01:00
/*QUI SOMMES NOUS*/
2019-11-27 10:36:44 +01:00
#content>h1 {
2019-11-23 15:49:48 +01:00
margin-top: 3vw;
}
2019-11-27 10:36:44 +01:00
#content>h2 {
2019-11-23 15:49:48 +01:00
font-size: 2vw;
color: white;
text-align: left;
margin-top: 5vw;
}
2019-11-27 10:36:44 +01:00
#content>ul>li>h3 {
2019-11-23 15:49:48 +01:00
font-size: 1.5vw;
color: lightgrey;
}
2019-11-27 10:36:44 +01:00
table#equipe {
2019-11-23 15:49:48 +01:00
width: 100%;
}
2019-12-04 09:54:26 +01:00
2019-11-27 10:36:44 +01:00
tr#equ>td {
2019-11-23 15:49:48 +01:00
text-align: center;
}
2019-11-27 10:36:44 +01:00
tr#equ>td>img {
2019-11-23 15:49:48 +01:00
float: none;
2019-12-04 09:54:26 +01:00
width: 20%;
2019-11-23 15:49:48 +01:00
border: 0.2vw solid rgb(204, 25, 25);
}
2019-11-27 10:36:44 +01:00
/*=========================*/
2019-11-27 10:36:44 +01:00
/*====================================*/