From 73d2c35d7b490638294ed70ff1f25585f9eb8b12 Mon Sep 17 00:00:00 2001 From: Jens Mohrmann Date: Sat, 15 Feb 2025 18:05:59 +0100 Subject: [PATCH] change template --- .DS_Store | Bin 0 -> 6148 bytes LICENSE | 21 +++++ README.md | 42 +++++++++ css/reset.css | 25 +++++ css/styles.css | 75 +++++++++++++++ css/themes/green-white.css | 14 +++ css/themes/grey-white.css | 14 +++ css/themes/indigo-white.css | 14 +++ css/themes/red-white.css | 14 +++ css/themes/white-blue.css | 14 +++ css/themes/white-grey.css | 14 +++ css/themes/white-indigo.css | 14 +++ css/themes/white-red.css | 14 +++ css/themes/yellow-black.css | 14 +++ favicon.ico | Bin 0 -> 5558 bytes index.html | 87 +++++++++++++++++- minimalMistakes_bak/.DS_Store | Bin 0 -> 6148 bytes Gemfile => minimalMistakes_bak/Gemfile | 0 .../_config.yml | 0 .../_data}/navigation.yml | 0 .../_pages}/about.md | 0 .../_pages}/timeslicer.md | 0 .../_posts}/2018-02-06-A-Test.md | 0 .../assets}/images/jens.jpg | Bin minimalMistakes_bak/index.html | 4 + 25 files changed, 376 insertions(+), 4 deletions(-) create mode 100644 .DS_Store create mode 100644 LICENSE create mode 100644 README.md create mode 100644 css/reset.css create mode 100644 css/styles.css create mode 100644 css/themes/green-white.css create mode 100644 css/themes/grey-white.css create mode 100644 css/themes/indigo-white.css create mode 100644 css/themes/red-white.css create mode 100644 css/themes/white-blue.css create mode 100644 css/themes/white-grey.css create mode 100644 css/themes/white-indigo.css create mode 100644 css/themes/white-red.css create mode 100644 css/themes/yellow-black.css create mode 100644 favicon.ico create mode 100644 minimalMistakes_bak/.DS_Store rename Gemfile => minimalMistakes_bak/Gemfile (100%) rename _config.yml => minimalMistakes_bak/_config.yml (100%) rename {_data => minimalMistakes_bak/_data}/navigation.yml (100%) rename {_pages => minimalMistakes_bak/_pages}/about.md (100%) rename {_pages => minimalMistakes_bak/_pages}/timeslicer.md (100%) rename {_posts => minimalMistakes_bak/_posts}/2018-02-06-A-Test.md (100%) rename {assets => minimalMistakes_bak/assets}/images/jens.jpg (100%) create mode 100644 minimalMistakes_bak/index.html diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..4107a70bdb194a1af2732595aab66a2d7cbefa3e GIT binary patch literal 6148 zcmeHKJx;?=47S@2tyn6tFup5vMou)7S% zyX(`ODys79=KCAHY%)cerdeKQh{*V>kMi}nnO*#lUEVZjU7?Kjsi0fBhZb}}Ii13* z=mGv6UBWw~O#JqKq;T8H=6;_KkKUhFZ?fMl*DcD;d46BrK5yK$8)v{7a0Ygb0o>Ul z!#zc}&VV!E46GTD??ZqJCWf_Q{B*#?763RvI0}5}C8Q=8CWf^lG7#2Mpq8?=7_8-p z2OF0d){0tAY|RJT%4{79$JH@^h{K5!MYqm?Gtg$Bua9H7|4+W}|Jz0W .intro { + font-family: 'Reem Kufi', sans-serif; + font-size: 3.75em; + font-weight: 600; +} + +main > .tagline { + font-size: 1.5rem; + margin: 1.5rem 0; + font-weight: 100; +} + +.icons-social i { + padding: 10px; +} + +.icons-social a { + text-decoration: none; +} + +.devto { + margin-bottom: -0.20rem; +} + +.devto svg { + margin-bottom: -0.20rem; + margin-left: 0.675rem;; + width: 2.65rem; + height: 2.65rem; +} \ No newline at end of file diff --git a/css/themes/green-white.css b/css/themes/green-white.css new file mode 100644 index 0000000..e735d93 --- /dev/null +++ b/css/themes/green-white.css @@ -0,0 +1,14 @@ +/* Theme */ + +main { + background: #43A047; + color: #FAFAFA; +} + +.icons-social a { + color: #FAFAFA; +} + +.icons-social a svg path{ + fill: #FAFAFA; +} \ No newline at end of file diff --git a/css/themes/grey-white.css b/css/themes/grey-white.css new file mode 100644 index 0000000..6e88078 --- /dev/null +++ b/css/themes/grey-white.css @@ -0,0 +1,14 @@ +/* Theme */ + +main { + background: #485564; + color: #FAFAFA; +} + +.icons-social a { + color: #FAFAFA; +} + +.icons-social a svg path{ + fill: #FAFAFA; +} \ No newline at end of file diff --git a/css/themes/indigo-white.css b/css/themes/indigo-white.css new file mode 100644 index 0000000..8f67212 --- /dev/null +++ b/css/themes/indigo-white.css @@ -0,0 +1,14 @@ +/* Theme */ + +main { + background: #303F9F; + color: #FAFAFA; +} + +.icons-social a { + color: #FAFAFA; +} + +.icons-social a svg path{ + fill: #FAFAFA; +} \ No newline at end of file diff --git a/css/themes/red-white.css b/css/themes/red-white.css new file mode 100644 index 0000000..cfae307 --- /dev/null +++ b/css/themes/red-white.css @@ -0,0 +1,14 @@ +/* Theme */ + +main { + background: #AF3D4E; + color: #FAFAFA; +} + +.icons-social a { + color: #FAFAFA; +} + +.icons-social a svg path{ + fill: #FAFAFA; +} \ No newline at end of file diff --git a/css/themes/white-blue.css b/css/themes/white-blue.css new file mode 100644 index 0000000..7a279b3 --- /dev/null +++ b/css/themes/white-blue.css @@ -0,0 +1,14 @@ +/* Theme */ + +main { + background: #FAFAFA; + color: #0277BD; +} + +.icons-social a { + color: #0277BD; +} + +.icons-social a svg path{ + fill: #0277BD; +} \ No newline at end of file diff --git a/css/themes/white-grey.css b/css/themes/white-grey.css new file mode 100644 index 0000000..d0137dc --- /dev/null +++ b/css/themes/white-grey.css @@ -0,0 +1,14 @@ +/* Theme */ + +main { + background: #EDEDED; + color: #4B5658; +} + +.icons-social a { + color: #4B5658; +} + +.icons-social a svg path{ + fill: #4B5658; +} \ No newline at end of file diff --git a/css/themes/white-indigo.css b/css/themes/white-indigo.css new file mode 100644 index 0000000..e5e36d6 --- /dev/null +++ b/css/themes/white-indigo.css @@ -0,0 +1,14 @@ +/* Theme */ + +main { + background: #E8EAF6; + color: #303F9F; +} + +.icons-social a { + color: #303F9F; +} + +.icons-social a svg path{ + fill: #303F9F; +} \ No newline at end of file diff --git a/css/themes/white-red.css b/css/themes/white-red.css new file mode 100644 index 0000000..5f63181 --- /dev/null +++ b/css/themes/white-red.css @@ -0,0 +1,14 @@ +/* Theme */ + +main { + background: #EDEDED; + color: #AF3D4E; +} + +.icons-social a { + color: #AF3D4E; +} + +.icons-social a svg path{ + fill: #AF3D4E; +} \ No newline at end of file diff --git a/css/themes/yellow-black.css b/css/themes/yellow-black.css new file mode 100644 index 0000000..309253b --- /dev/null +++ b/css/themes/yellow-black.css @@ -0,0 +1,14 @@ +/* Theme */ + +main { + background: #FFEB3B; + color: #1E1E1E; +} + +.icons-social a { + color: #1E1E1E; +} + +.icons-social a svg path{ + fill: #1E1E1E; +} \ No newline at end of file diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..6cdfd403957cd7b4a7b8b5e21d033ecbdaebfa17 GIT binary patch literal 5558 zcmeI0y=x*t6u>9P{Qj*j5|{vN8;Dx994LL!lXVzCG|n~j@seSHmqKwvih;NSrI{XW?3_F3N|pS_mH zvB_i-Zf6lpUaR?`?`t*?%_0{@{v!um1P!ychq)Vlk-K>+rga zMk5#whiw0EwOWwLWWeQefm*FziJxk<8Z)8O>44d6o-qst1Ni-Zzb5W%_S#Z|CaX-Q9($jf25J)VYMm#$|leq19@k+wC$tu|=DBbn}ei;iH~lFv$3L z35UaL=j(JjczSwbHsE=QXKp-Wc;}D0n$0HTqa8fwI=T6kN`>(!lL_ecdRcrRX8xPz z_j + + + + + + + JensMohrmann.de | Jens Mohrmann + + + + + + + + + + + + + + + + + + +
+
Jens Mohrmann
+
Physicist | Product Development Engineer
+ + +
+ + diff --git a/minimalMistakes_bak/.DS_Store b/minimalMistakes_bak/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..fb2e62e7ed1291fefd29e334818d232d6453d8e8 GIT binary patch literal 6148 zcmeHKu}*|Q5S>*tM4L-&?4-8PTw^O<@C)t(loLIRBVf?VhWHtNfu$c|`~_P-#W%AX zSm21AF_)QS_rdH8^LPn6ED@R6Q#K`<5K)N180=wMW4z8|U|Y_^$wr=$u9nmJO_7&_ zSaqlZs=)tKfWO@xx}uCydZga>Yp_H3t9g+mi&e3JH#|8yxO;y8yy!<{zeJSx{tm(A zX&3cN)L+sqRlObLt-tPbcsOo2be@qHEsL?3Q62?VP@>P{wc+8`eI75TJswR=%VR8N zEsqo&DyT8w@%14*ymg<)`I*O~6Vvh-i|O+CMj5pYR{%YmE!?-Lvnrqpr~-`wygx)3 zjIqPoqHG