2022-05-06 18:58:00 +02:00
|
|
|
|
*, *::before, *::after {
|
2022-05-06 19:16:15 +02:00
|
|
|
|
box-sizing: border-box;
|
2022-05-06 19:58:09 +02:00
|
|
|
|
font-style: inherit;
|
2022-05-06 18:58:00 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
:root {
|
|
|
|
|
|
--brand: #66cc00;
|
|
|
|
|
|
|
|
|
|
|
|
--text: #000000de;
|
2022-05-06 19:16:15 +02:00
|
|
|
|
--text-00: #ffffffde;
|
|
|
|
|
|
|
|
|
|
|
|
--bg-00: #000000;
|
2022-05-25 20:42:29 +02:00
|
|
|
|
--bg-01: #efefef;
|
|
|
|
|
|
--bg-02: #dedede;
|
2023-03-06 12:46:31 +01:00
|
|
|
|
--bg-03: #bebebe;
|
2022-05-06 19:16:15 +02:00
|
|
|
|
|
2023-03-06 11:29:02 +01:00
|
|
|
|
--colw: 18rem;
|
|
|
|
|
|
--colgap: 2rem;
|
2022-05-08 09:50:54 +02:00
|
|
|
|
--gap: 1rem;
|
2023-03-06 11:29:02 +01:00
|
|
|
|
--maxw: 60rem;
|
2022-05-08 09:53:43 +02:00
|
|
|
|
--lh: 1.3rem;
|
|
|
|
|
|
|
2022-05-08 09:50:54 +02:00
|
|
|
|
--bl-lh: 2rem;
|
2022-05-08 09:53:43 +02:00
|
|
|
|
--bl-gap: 1rem;
|
2022-05-06 18:58:00 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
body {
|
2023-03-06 13:09:43 +01:00
|
|
|
|
font-family: "Inter var experimental", "Inter var", "Inter", sans-serif;
|
2022-05-06 18:58:00 +02:00
|
|
|
|
color: var(--text);
|
2022-05-06 20:10:29 +02:00
|
|
|
|
margin: auto;
|
2022-05-08 09:50:54 +02:00
|
|
|
|
padding: var(--gap);
|
2022-05-06 19:38:10 +02:00
|
|
|
|
font-weight: 350;
|
2023-03-06 12:59:00 +01:00
|
|
|
|
font-feature-settings: "ss01", "ss02", "ss03";
|
2022-05-08 09:50:54 +02:00
|
|
|
|
max-width: var(--maxw);
|
2022-05-08 09:29:36 +02:00
|
|
|
|
display: grid;
|
2023-03-06 12:23:20 +01:00
|
|
|
|
grid-template-columns: 1fr;
|
2023-03-06 11:29:02 +01:00
|
|
|
|
grid-gap: var(--colgap);
|
2022-05-08 09:29:36 +02:00
|
|
|
|
}
|
2023-03-06 11:29:02 +01:00
|
|
|
|
/* body > div {
|
2022-05-08 09:50:54 +02:00
|
|
|
|
column-width: var(--colw);
|
|
|
|
|
|
column-gap: var(--gap);
|
2023-03-06 11:29:02 +01:00
|
|
|
|
} */
|
2022-05-08 09:29:36 +02:00
|
|
|
|
body > div.info {grid-column: 1}
|
2023-03-06 12:23:20 +01:00
|
|
|
|
body > div.cv {grid-column: 1}
|
|
|
|
|
|
div.title > img {
|
|
|
|
|
|
margin-top: 2rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
h1 {
|
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
@media (min-width: 40rem) {
|
|
|
|
|
|
body {grid-template-columns: var(--colw) 1fr}
|
|
|
|
|
|
body > div.cv {grid-column: 2 / -1}
|
|
|
|
|
|
}
|
|
|
|
|
|
@media (min-width: 70rem) {
|
|
|
|
|
|
h1 {
|
|
|
|
|
|
margin-top: 2rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
div.title {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
div.title > img {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
left: -5rem;
|
|
|
|
|
|
width: 4rem;
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
}
|
2022-05-06 18:58:00 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2023-03-06 12:23:20 +01:00
|
|
|
|
h1, h2, h3 {
|
|
|
|
|
|
font-weight: 250;
|
|
|
|
|
|
}
|
|
|
|
|
|
h2 {
|
|
|
|
|
|
margin-top: 2rem;
|
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
h3 {
|
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
|
margin-bottom: .5rem;
|
|
|
|
|
|
}
|
2022-05-06 18:58:00 +02:00
|
|
|
|
h1 {
|
|
|
|
|
|
font-size: 3rem;
|
|
|
|
|
|
letter-spacing: -.1rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
h2 {font-size: 2.3rem}
|
|
|
|
|
|
h3 {font-size: 1.7rem}
|
2023-03-06 12:23:20 +01:00
|
|
|
|
h4, h5, h6 {
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
}
|
2022-05-06 18:58:00 +02:00
|
|
|
|
h4 {font-size: 1.2rem}
|
|
|
|
|
|
h5 {font-size: 1rem}
|
|
|
|
|
|
h6 {font-size: .8rem}
|
|
|
|
|
|
|
2022-05-08 09:53:43 +02:00
|
|
|
|
p, ul, ol, dl {line-height: var(--lh)}
|
2022-05-06 19:58:09 +02:00
|
|
|
|
em {font-variation-settings: 'slnt' -5}
|
|
|
|
|
|
strong {font-weight: 550}
|
2022-05-06 19:38:10 +02:00
|
|
|
|
|
|
|
|
|
|
ul {list-style-type: "–"}
|
|
|
|
|
|
ol {list-style-type: decimal-leading-zero}
|
2022-05-08 09:50:54 +02:00
|
|
|
|
li {padding-left: calc(var(--gap) / 2)}
|
2023-03-06 13:04:04 +01:00
|
|
|
|
|
|
|
|
|
|
dl {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: max-content 1fr;
|
|
|
|
|
|
grid-column-gap: 0;
|
|
|
|
|
|
grid-row-gap: .5rem;
|
|
|
|
|
|
}
|
2023-03-06 12:59:00 +01:00
|
|
|
|
dt {
|
2023-03-06 13:04:04 +01:00
|
|
|
|
grid-column: 1;
|
2023-03-06 12:59:00 +01:00
|
|
|
|
font-feature-settings: "ss01", "ss02", "ss03", "tnum";
|
2023-03-06 13:04:04 +01:00
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
}
|
2023-03-12 08:00:40 +01:00
|
|
|
|
dt span {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
}
|
|
|
|
|
|
dt span.start {
|
|
|
|
|
|
font-size: .75em;
|
|
|
|
|
|
}
|
2023-03-06 13:04:04 +01:00
|
|
|
|
dd {
|
|
|
|
|
|
grid-column: 2;
|
2023-03-06 12:59:00 +01:00
|
|
|
|
}
|
2022-05-06 21:06:15 +02:00
|
|
|
|
|
2022-05-25 20:42:29 +02:00
|
|
|
|
.block {
|
2022-05-07 18:31:47 +02:00
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
2023-03-06 11:29:02 +01:00
|
|
|
|
grid-template-columns: 1fr;
|
2022-05-07 18:31:47 +02:00
|
|
|
|
grid-gap: .2rem;
|
|
|
|
|
|
grid-auto-rows: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
.img-block > img {
|
2023-03-06 13:20:04 +01:00
|
|
|
|
max-width: 100%;
|
2022-05-07 18:31:47 +02:00
|
|
|
|
object-fit: cover;
|
|
|
|
|
|
}
|
2022-05-25 20:42:29 +02:00
|
|
|
|
.link-block > a {
|
|
|
|
|
|
background: var(--bg-01);
|
|
|
|
|
|
color: inherit;
|
|
|
|
|
|
padding: var(--gap);
|
2023-03-06 11:29:02 +01:00
|
|
|
|
height: 6rem;
|
2022-05-25 20:42:29 +02:00
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
|
grid-template-rows: 1fr auto;
|
2023-03-06 12:49:59 +01:00
|
|
|
|
text-decoration: none;
|
2022-05-25 20:42:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
.link-block > a:hover {
|
|
|
|
|
|
background: var(--bg-02);
|
2023-03-06 11:29:02 +01:00
|
|
|
|
}
|
2023-03-06 12:46:31 +01:00
|
|
|
|
.link-block > a:active{
|
|
|
|
|
|
background: var(--bg-03);
|
|
|
|
|
|
}
|
2023-03-06 11:29:02 +01:00
|
|
|
|
.link-block > a:hover > span.desc {
|
|
|
|
|
|
text-decoration: underline;
|
2022-05-25 20:42:29 +02:00
|
|
|
|
}
|
2023-03-06 11:29:02 +01:00
|
|
|
|
.link-block > a > span.i {
|
|
|
|
|
|
font-size: 2rem;
|
|
|
|
|
|
text-align: right;
|
2022-05-25 20:42:29 +02:00
|
|
|
|
}
|
2023-03-06 11:29:02 +01:00
|
|
|
|
.link-block > a > span.desc {
|
2022-05-25 20:42:29 +02:00
|
|
|
|
grid-row: 2;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
}
|
|
|
|
|
|
.link-block > a > span > em {
|
|
|
|
|
|
font-weight: 550;
|
|
|
|
|
|
}
|
2022-05-07 18:31:47 +02:00
|
|
|
|
|
2022-05-06 21:06:15 +02:00
|
|
|
|
footer {
|
2023-03-06 12:31:16 +01:00
|
|
|
|
font-weight: 500;
|
2022-05-08 09:29:36 +02:00
|
|
|
|
grid-column: 1 / -1;
|
2022-05-06 21:06:15 +02:00
|
|
|
|
text-align: center;
|
2022-05-08 09:53:43 +02:00
|
|
|
|
padding: var(--bl-gap);
|
2022-05-08 09:50:54 +02:00
|
|
|
|
line-height: var(--bl-lh);
|
|
|
|
|
|
margin: calc(-1 * var(--gap));
|
|
|
|
|
|
margin-top: 0;
|
2022-05-06 21:06:15 +02:00
|
|
|
|
}
|