quentin.dufour.io/assets/css/style.css

120 lines
1.7 KiB
CSS
Raw Normal View History

2021-07-14 13:44:07 +00:00
html {
margin: 0px;
padding: 0px;
font-size: 62.5%;
--color-text: #404040;
--color-text-second: #6f6f6f;
--color-accent: #8c0c00;
--color-second: #ffc0ba80;
2015-06-11 19:13:58 +00:00
}
body {
2021-07-14 13:44:07 +00:00
margin: 0px;
padding: 0px;
font-family: "Merriweather",Georgia,Times,"Times New Roman",serif;
color: var(--color-text);
text-rendering: optimizeLegibility;
font-feature-settings: "kern", "liga", "dlig", "salt";
font-size: 2.4rem;
2015-06-11 19:13:58 +00:00
}
2021-07-14 13:44:07 +00:00
main > section, footer {
max-width: 1000px;
padding: 3rem 3rem 3rem 200px;
margin: auto;
2015-06-11 19:13:58 +00:00
}
2021-07-14 13:44:07 +00:00
header {
width: 100%;
text-align: center;
padding-top: 3rem;
padding-bottom: 3rem;
2015-06-11 19:13:58 +00:00
}
2021-07-14 13:44:07 +00:00
footer {
display: flex;
2015-06-11 19:13:58 +00:00
}
2021-07-14 13:44:07 +00:00
footer > section {
width: 50%;
2015-06-11 19:13:58 +00:00
}
2021-07-14 13:44:07 +00:00
h1 {
font-size: 4.8rem;
font-weight: 500;
margin: 0px;
2015-06-11 19:13:58 +00:00
}
2021-07-14 13:44:07 +00:00
h1::after {
content: "🙡 🙣";
font-size: 4.8rem;
display: block;
color: var(--color-accent);
2015-06-11 19:13:58 +00:00
}
2021-07-14 13:44:07 +00:00
h2, h3 {
font-variant: small-caps;
text-transform: lowercase;
letter-spacing: 0.1em;
font-size: 1.8rem;
margin-top: 0px;
2015-06-11 19:13:58 +00:00
}
2021-07-14 13:44:07 +00:00
h2 {
position: absolute;
width: 180px;
margin: 0px 0px 0px -200px;
text-align: right;
padding: 5px 20px 0px 0px;
2015-06-11 19:13:58 +00:00
}
2021-07-14 13:44:07 +00:00
h3 {
padding-top: 5px;
2015-06-11 19:13:58 +00:00
}
2021-07-14 13:44:07 +00:00
h4, h5, h6 {
font-weight: normal;
font-size: 1.8rem;
margin: 0px;
2015-06-11 19:13:58 +00:00
}
2021-07-14 13:44:07 +00:00
p {
margin: 0;
2015-06-11 19:13:58 +00:00
}
2021-07-14 13:44:07 +00:00
.list ul {
padding: 0px;
2015-06-11 19:13:58 +00:00
}
2021-07-14 13:44:07 +00:00
.list li {
display: inline;
2015-06-11 19:13:58 +00:00
}
2021-07-14 13:44:07 +00:00
.list li:not(:first-child)::before {
content: "🙘";
display: inline-block;
vertical-align: middle;
width: 4rem;
text-align: center;
2015-06-11 19:13:58 +00:00
}
2021-07-14 13:44:07 +00:00
a, a:hover, a:visited {
padding: 0rem 0.6rem;
margin: 0rem -0.6rem;
color: var(--color-accent);
text-decoration: none;
transition: background-color 400ms;
2015-06-11 19:13:58 +00:00
}
2021-07-14 13:44:07 +00:00
a:hover {
background-color: var(--color-second);
2015-06-11 19:13:58 +00:00
}
2021-07-14 13:44:07 +00:00
.card {
margin-bottom: 1.8rem;
2015-06-11 19:13:58 +00:00
}
2021-07-14 13:44:07 +00:00
.card > p {
font-size: 1.6rem;
color: var(--color-text-second);
2016-05-20 03:05:28 +00:00
}