63 lines
879 B
CSS
63 lines
879 B
CSS
/* ---------- Fonts ---------- */
|
|
|
|
@import url('../fonts/fonts.css');
|
|
|
|
body {
|
|
font-family: "merriweatherlight", serif;
|
|
font-size: 2em;
|
|
color: rgba(0, 0, 0, 0.6);
|
|
}
|
|
|
|
|
|
/* ----------- titre ---------- */
|
|
|
|
header {
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 2em 0;
|
|
background-color: rgba(103, 83, 108, 1); */
|
|
}
|
|
|
|
#avatar {
|
|
border-radius: 50%;
|
|
padding: .5em;
|
|
}
|
|
|
|
h1 {
|
|
color: rgba(238, 215, 244, 1);
|
|
margin: 0;
|
|
}
|
|
|
|
/* ----------- map ------------- */
|
|
|
|
#map {
|
|
height: 30em;
|
|
margin-bottom: 2.5rem;
|
|
}
|
|
|
|
/* ----------- carte ---------- */
|
|
|
|
#carte {
|
|
padding-bottom: 1em;
|
|
}
|
|
|
|
#carte ul {
|
|
list-style-type: none;
|
|
margin-bottom: .5rem;
|
|
}
|
|
|
|
#carte li {
|
|
line-height: 1.3em;
|
|
}
|
|
|
|
#empreinte {
|
|
font-family: monospace;
|
|
}
|
|
|
|
/* ----------- présentation et professionnel ------------ */
|
|
|
|
p {
|
|
-moz-hyphens: auto;
|
|
hyphens: auto;
|
|
}
|