55 lines
724 B
CSS
55 lines
724 B
CSS
/* ---------- Fonts ---------- */
|
|
|
|
@import url('../fonts/fonts.css');
|
|
|
|
body {
|
|
font-family: "merriweatherlight", serif;
|
|
color: rgba(0, 0, 0, 0.6);
|
|
}
|
|
|
|
|
|
/* ----------- titre ---------- */
|
|
|
|
header {
|
|
padding: 1em 0 1em 0;
|
|
}
|
|
|
|
header h2::before {
|
|
content: " : ";
|
|
}
|
|
|
|
h1,h2 {
|
|
display: inline-block;
|
|
}
|
|
|
|
/* ----------- carte ---------- */
|
|
|
|
#carte {
|
|
padding-bottom: 1em;
|
|
}
|
|
|
|
#avatar {
|
|
width: 100%;
|
|
border: solid 1px rgba(103, 83, 108, 0.8);
|
|
border-radius: 50%;
|
|
}
|
|
|
|
#carte ul {
|
|
list-style-type: none;
|
|
}
|
|
|
|
#carte li {
|
|
line-height: 1.3em;
|
|
}
|
|
|
|
#empreinte {
|
|
font-family: monospace;
|
|
}
|
|
|
|
/* ----------- présentation et professionnel ------------ */
|
|
|
|
p {
|
|
-moz-hyphens: auto;
|
|
hyphens: auto;
|
|
}
|