commit a1c048920b9f27262ef5dffe497ea2fb47bd7cfa Author: wgroeneveld Date: Wed Nov 15 10:19:25 2023 +0100 initial commit heavily inspired by staacks.de diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5ab1b2e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.sublime-workspace diff --git a/index.html b/index.html new file mode 100644 index 0000000..9edebcf --- /dev/null +++ b/index.html @@ -0,0 +1,47 @@ + + + + Wouter Groeneveld + + + + + + + +

Contact and links

+
+
Blog
+
brainbaking.com
+
Affiliation
+
KU Leuven, Engineering Technology Education Research
+
Google Scholar
+
scholar.google.com
+
Email
+
wouter@brainbaking.com
+
+
+

Curriculum vitae

+ +
+ + + + diff --git a/profile.png b/profile.png new file mode 100644 index 0000000..6a3ddf1 Binary files /dev/null and b/profile.png differ diff --git a/woutergr.css b/woutergr.css new file mode 100644 index 0000000..84d3bea --- /dev/null +++ b/woutergr.css @@ -0,0 +1,113 @@ +html { + font-family: Palatino, serif; + font-size: 100%; + color: white; + width: 100%; + margin: 0; + background: black; + text-size-adjust: none; +} + +body { + max-width: 60em; + margin: 0 auto; + padding: 0 1em 1em 1em; +} + +a { + color: #80b0ff; +} + +body section.refs ul li.expanded .date { + color: #80b0ff; +} + +#image { + background-image: url("profile.png"); + background-repeat: no-repeat; + background-position: right bottom; + background-size: contain; + height: 25vh; +} + + +@media (prefers-color-scheme: light) { + html { + color: black; + background: white; + } + + a { + color: #6080a0; + } + + body section.refs ul li.expanded .date { + color: #6080a0; + } +} + +#header { + font-size: 125%; + width: 100%; + height: 70vh; + padding-top: 30vh; +} + +.decrease { + font-size: 66%; +} + +dl { + display: grid; + grid-template-columns: 8em auto; +} + +@media only screen and (max-width: 40rem) { + dl { + display: block; + } +} + +h1 { + text-align: right; + margin: 0.1em 0; +} + +#profession { + text-align: right; + font-size: 125%; + font-style: italic; +} + +h2 { + margin-top: 3em; +} + +#keywords { + text-align: center; + font-style: italic; + margin-top: 5em; +} + +#scrollhint { + font-size: 200%; + text-align: center; +} + +section.refs ul li.expanded .date { + color: #80b0ff; +} + +@media (prefers-color-scheme: light) { + section.refs ul li.expanded .date { + color: #6080a0; + } + + section.refs > ul > li.invited::after { + border: 1px solid black; + } + + section.refs > ul > li > ul > li::after { + border: 1px solid black !important; + } +} diff --git a/woutergr.sublime-project b/woutergr.sublime-project new file mode 100644 index 0000000..24db303 --- /dev/null +++ b/woutergr.sublime-project @@ -0,0 +1,8 @@ +{ + "folders": + [ + { + "path": "." + } + ] +}