71 lines
907 B
CSS
71 lines
907 B
CSS
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
header {
|
||
|
height: 135px;
|
||
|
}
|
||
|
|
||
|
header.logo {
|
||
|
float: left;
|
||
|
width: 298px;
|
||
|
}
|
||
|
|
||
|
header nav {
|
||
|
text-align: right;
|
||
|
}
|
||
|
|
||
|
header nav ul {
|
||
|
display: inline-block;
|
||
|
line-height: 135px;
|
||
|
}
|
||
|
|
||
|
header nav ul li {
|
||
|
display: inline-block;
|
||
|
padding: 0px 40px;
|
||
|
}
|
||
|
|
||
|
header nav .connexion {
|
||
|
display: inline;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
text-decoration: none;
|
||
|
color: unset;
|
||
|
}
|
||
|
|
||
|
a.btn {
|
||
|
display: inline;
|
||
|
border-radius: 15px;
|
||
|
padding: 8px 25px;
|
||
|
}
|
||
|
|
||
|
.btn-primary {
|
||
|
background: #3B6D56;
|
||
|
color: #ffffff;
|
||
|
}
|
||
|
|
||
|
.btn.btn-secondary {
|
||
|
background: #79BD9D;
|
||
|
color: #ffffff;
|
||
|
}
|
||
|
|
||
|
.btn-white {
|
||
|
background: #ffffff;
|
||
|
color: #3B6D56;
|
||
|
}
|
||
|
|
||
|
.btn-green {
|
||
|
background: #00ED93;
|
||
|
color: #3B6D56;
|
||
|
}
|
||
|
|
||
|
.btn-price {
|
||
|
text-size-adjust: 2em;
|
||
|
text-decoration: solid;
|
||
|
border-radius: 20px;
|
||
|
padding: 10px 5px 10px 5px;
|
||
|
background: #00ED93;
|
||
|
color: #3B6D56;
|
||
|
}
|