65 lines
882 B
CSS
65 lines
882 B
CSS
body {
|
|
font-family: 'Open Sans', sans-serif;
|
|
color: #777;
|
|
}
|
|
|
|
a:active, a:hover {
|
|
outline: 0 none;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5 {
|
|
color: #444444;
|
|
font-family: "Roboto",sans-serif;
|
|
font-weight: 100;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 90px;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 24px;
|
|
font-weight: 100;
|
|
letter-spacing: 2px;
|
|
text-transform: uppercase;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
h3 {
|
|
margin: 30px 0 15px;
|
|
}
|
|
|
|
.logo {
|
|
background: url(../../assets/img/bouton-logo.jpg);
|
|
height: 140px;
|
|
margin: 60px auto 30px;
|
|
width: 140px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.logo .inner {
|
|
background: #ffffff;
|
|
height: 100px;
|
|
margin: 20px;
|
|
position: absolute;
|
|
width: 100px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.separator {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.credits {
|
|
text-transform: uppercase;
|
|
margin-bottom: 30px;
|
|
font-size: 18px;
|
|
font-weight: 100;
|
|
}
|
|
|
|
.credits .separator {
|
|
margin-bottom: 30px;
|
|
}
|
|
|