diff --git a/_layouts/default.html b/_layouts/default.html index 64b954e..ef65674 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -25,6 +25,8 @@ {{ content }} +
+ {% include footer.html %} \ No newline at end of file diff --git a/experience/malung.html b/experience/malung.html new file mode 100644 index 0000000..92d1fc8 --- /dev/null +++ b/experience/malung.html @@ -0,0 +1,46 @@ +--- +title: Example +description: A description of Maxim Voldman Hutz's work on Example. +layout: default +--- + + + +
+ +
+
+

+ Lorem Ipsum is simply dummy text of the printing and typesetting industry. + Lorem Ipsum has been the industry's standard dummy text ever since the + 1500s, when an unknown printer took a galley of type and scrambled it to + make a type specimen book. +

+
+
    +
  • + Lorem Ipsum is simply dummy text of the printing and typesetting industry. +
  • +
  • + Lorem Ipsum has been the industry's standard dummy text ever since the + 1500s, when an unknown printer took a galley of type and scrambled it to + make a type specimen book. +
  • +
  • + It has survived not only five centuries, but also the leap into electronic + typesetting, remaining essentially unchanged. +
  • +
+ View Example +
+
+ +
+
+
\ No newline at end of file diff --git a/experiences/malung.html b/experiences/malung.html deleted file mode 100644 index e69de29..0000000 diff --git a/index.html b/index.html index bd5fd5a..0615370 100644 --- a/index.html +++ b/index.html @@ -26,8 +26,6 @@ layout: default
- -

Worked on:

diff --git a/styles/default.css b/styles/default.css index 44f9b34..105b171 100644 --- a/styles/default.css +++ b/styles/default.css @@ -11,6 +11,7 @@ body { width: min(100vw, 1024px); box-sizing: border-box; margin: auto; + padding: 0 20px; } /*----------------------------------------------------------------------------*/ @@ -43,6 +44,7 @@ button { display: inline-flex; align-items: center; justify-content: center; + cursor: pointer; } .icon::before { @@ -72,15 +74,24 @@ h2 { i { font-size: 20px; - font-size: "Source Serif Pro"; + font-family: "Source Serif Pro"; } -p { +p, section { font-size: 20px; font-family: "Open Sans"; font-weight: 100; } +ul { + list-style-type: "- "; + padding-left: 2ch; +} + +li { + padding-bottom: 20px; +} + .lighter { background: #fff4; } @@ -99,7 +110,6 @@ hr { position: relative; padding: 10px 30px; font-size: 20px; - cursor: pointer; } .button::before { diff --git a/styles/experience.css b/styles/experience.css new file mode 100644 index 0000000..8375dc4 --- /dev/null +++ b/styles/experience.css @@ -0,0 +1,40 @@ +#banner { + margin-top: 10px; + padding: 20px 0; + display: flex; + justify-content: space-between; + align-items: center; + line-height: 1; +} + +#experience { + color: white; + gap: 30px; + display: flex; + flex-direction: column; + align-items: flex-start; +} + +#content { + display: flex; + flex-wrap: wrap-reverse; + align-items: flex-end; + gap: 30px; +} + +#image { + flex: 1; + background-color: #ccc; + border-radius: 10px; + height: 300px; + min-width: min(500px, 100%); +} + +#description { + flex: 1; + gap: 30px; + display: flex; + flex-direction: column; + align-items: flex-start; + min-width: min(300px, 100%); +} \ No newline at end of file diff --git a/styles/global.css b/styles/global.css index 4616d26..8ac4e30 100644 --- a/styles/global.css +++ b/styles/global.css @@ -31,6 +31,7 @@ .white { --color: white } .flex-space, .flex, br { flex-grow: 1 } +.flex.dark { background-color: var(--dark); } .space { flex: 1000 } /*----------------------------------------------------------------------------*/ @@ -43,8 +44,8 @@ html { .back { position: relative; - padding: 10px 20px; - width: min(100vw, 1024px); + padding: 10px 0; + width: min(100vw, 1024px, 100%); box-sizing: border-box; }