commit 680ac7d9c44752f57436d0ecb9c8018205a5fc0f Author: Paul Brinkmeier Date: Sat Aug 14 17:24:14 2021 +0000 Initial commit diff --git a/fonts/source-sans-pro-regular.woff2 b/fonts/source-sans-pro-regular.woff2 new file mode 100644 index 0000000..efa300c Binary files /dev/null and b/fonts/source-sans-pro-regular.woff2 differ diff --git a/fonts/source-sans-pro.css b/fonts/source-sans-pro.css new file mode 100644 index 0000000..b34874a --- /dev/null +++ b/fonts/source-sans-pro.css @@ -0,0 +1,9 @@ +/* Taken from fonts.googleapis.com/css?family=Source+Sans+Pro:400 */ + +@font-face { + font-family: 'Source Sans Pro'; + font-style: normal; + font-weight: 400; + src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(./source-sans-pro-regular.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215; +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..192a587 --- /dev/null +++ b/index.html @@ -0,0 +1,20 @@ + + + + + + + + + + +
+

+

Paul Brinkmeier

+
+

This is where I plan my personal website to be. + I currently am a little busy, so it might take a while until there actually will be one.

+
+ + + diff --git a/wip.css b/wip.css new file mode 100644 index 0000000..1b232da --- /dev/null +++ b/wip.css @@ -0,0 +1,41 @@ +html { + font-size: 16px; +} + +body { + margin: 0; + font-family: 'Source Sans Pro', Helvetica, sans-serif; + line-height: 1.4em; + color: #111; + background-color: #111; +} + +h1, h2 { + font-weight: normal; +} + +h1 { + font-size: 2em; +} + +h2 { + font-size: 1.25em; +} + +hr { + border: 1px solid #111; +} + +.card { + padding: 2em; + margin: 1em; + width: 25em; + background-color: #ee0; +} + +@media screen and (max-width: 35em) { + .card { + width: auto; + } +} +