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
2019-12-15 00:10:49 +01:00

170 lines
2.8 KiB
CSS

body{
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background-color: #bbb;
}
/*NAVBAR*/
a{
color: black;
}
.header{
background-color: white;
width: 100%;
z-index: 3;
overflow: auto;
box-shadow: 1px 1px 4px 0 rgba(0,0,0,0.1);
}
.header ul{
margin: 0;
padding : 0;
list-style: none;
overflow: hidden;
background-color: white;
}
.header ul a{
display: block;
padding: 20px;
border-right: 1px solid #aaa;
text-decoration: none;
}
.header ul a:hover{
background-color: #ddd;
}
.header .logo {
float: left;
display: block;
font-size: 2em;
text-decoration : none;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
padding: 10px 20px;
}
.header .menu {
clear: both;
max-height: 0;
transition: max-height 0.3s ease-out;
}
.header .menu-icon{
padding: 28px 20px;
position: relative;
float: right;
cursor: pointer;
}
.header .menu-icon .nav-icon{
background: #333;
display: block;
height: 2px;
width: 18px;
position: relative;
transition: background 0.2s ease-out;
}
.header .menu-icon .nav-icon:before{
background: #333;
content:"";
display: block;
height: 100%;
position: absolute;
width: 100%;
top: 5px;
transition: all 0.2s ease-out;
}
.header .menu-icon .nav-icon:after{
background: #333;
content:"";
display: block;
height: 100%;
position: absolute;
width: 100%;
transition: all 0.2s ease-out;
top: -5px;
}
.header .menu-btn{
display: none;
}
.header .menu-btn:checked ~ .menu{
max-height: 240px;
}
.header .menu-btn:checked ~ .menu-icon .nav-icon{
background-color: transparent;
}
.header .menu-btn:checked ~ .menu-icon .nav-icon:before{
transform: rotate(-45deg);
top: 0;
}
.header .menu-btn:checked ~ .menu-icon .nav-icon:after{
transform: rotate(45deg);
top: 0;
}
/*========================================*/
/*Slide des promotions*/
div#slider {
width: 100%;
max-width: 1920px;
margin: auto;
}
div#slider figure {
position: relative;
width: 500%;
margin: 0;
padding: 0;
font-size: 0;
text-align: left;
}
div#slider figure img {
width: 20%;
height: auto;
float: left;
}
div#slider {
width: 100%;
max-width: 1920px;
overflow: hidden
}
@keyframes slidy {
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%;}
}
div#slider figure {
position: relative;
width: 500%;
margin: 0;
padding: 0;
font-size: 0;
left: 0;
text-align: left;
animation: 16s slidy infinite;
}
/*============================================*/