diff --git a/components/01_Atoms/_atoms.scss b/components/01_Atoms/_atoms.scss index c295569..9e7bb7f 100644 --- a/components/01_Atoms/_atoms.scss +++ b/components/01_Atoms/_atoms.scss @@ -1,4 +1,10 @@ @import 'link/link'; @import 'headline/headline'; -@import 'text/text'; -@import 'icon/icon'; \ No newline at end of file +@import 'paragraph/paragraph'; +@import 'icon/icon'; +@import 'button/button'; +@import 'checkbox/checkbox'; +@import 'input/input'; +@import 'image/image'; +@import 'logo/logo'; +@import 'tag/tag'; \ No newline at end of file diff --git a/components/01_Atoms/button/_button.scss b/components/01_Atoms/button/_button.scss new file mode 100644 index 0000000..1107a9a --- /dev/null +++ b/components/01_Atoms/button/_button.scss @@ -0,0 +1,17 @@ +.LP-Button{ + background-color: $-light-brown; + color: $-grey; + border: none; + padding: 8px 14px; + border-radius: 2px; + font-weight: bold; + + &:active{ + background-color: $-wine-red; + color:$-almost-white; + } + + &--cancel{ + background-color: $-almost-white; + } +} \ No newline at end of file diff --git a/components/01_Atoms/button/button.config.json b/components/01_Atoms/button/button.config.json new file mode 100644 index 0000000..4d8fe77 --- /dev/null +++ b/components/01_Atoms/button/button.config.json @@ -0,0 +1,14 @@ +{ + "title": "Button", + "context":{ + "text": "Click me" + }, + "variants": [ + { + "name": "Cancel Button", + "context": { + "modifier": "--cancel" + } + } + ] +} \ No newline at end of file diff --git a/components/01_Atoms/button/button.hbs b/components/01_Atoms/button/button.hbs new file mode 100644 index 0000000..682867c --- /dev/null +++ b/components/01_Atoms/button/button.hbs @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/components/01_Atoms/checkbox/_checkbox.scss b/components/01_Atoms/checkbox/_checkbox.scss new file mode 100644 index 0000000..4b1fe6f --- /dev/null +++ b/components/01_Atoms/checkbox/_checkbox.scss @@ -0,0 +1,13 @@ +.LP-Form{ + .LP-Form__Checkbox{ + display: none; + } + + .LP-Form__CheckBox__CheckMark{ + height: 1em; + width: 1em; + border: 1px solid black; + padding: 0 calc(.5em + 2px); + margin-right: .7em; + } +} \ No newline at end of file diff --git a/components/01_Atoms/checkbox/checkbox.config.json b/components/01_Atoms/checkbox/checkbox.config.json new file mode 100644 index 0000000..4eb7c3f --- /dev/null +++ b/components/01_Atoms/checkbox/checkbox.config.json @@ -0,0 +1,3 @@ +{ + +} \ No newline at end of file diff --git a/components/01_Atoms/checkbox/checkbox.hbs b/components/01_Atoms/checkbox/checkbox.hbs new file mode 100644 index 0000000..bf3543b --- /dev/null +++ b/components/01_Atoms/checkbox/checkbox.hbs @@ -0,0 +1,3 @@ +
+ +
\ No newline at end of file diff --git a/components/01_Atoms/headline/_headline.scss b/components/01_Atoms/headline/_headline.scss index 8b6949e..cb8240f 100644 --- a/components/01_Atoms/headline/_headline.scss +++ b/components/01_Atoms/headline/_headline.scss @@ -1,6 +1,6 @@ .LP-Headline{ font-family: $-primary-sans-serif-font; - color: $-secondary-color; + color: $-grey; font-size: 1.7rem; padding-top: 0px; margin-top: 0px; @@ -15,5 +15,5 @@ &--inline{ display: inline; - } + } } \ No newline at end of file diff --git a/components/01_Atoms/headline/headline.config.json b/components/01_Atoms/headline/headline.config.json index 77be02e..7948e9f 100644 --- a/components/01_Atoms/headline/headline.config.json +++ b/components/01_Atoms/headline/headline.config.json @@ -9,6 +9,6 @@ "context": { "modifier": "--main" } - } + } ] } \ No newline at end of file diff --git a/components/01_Atoms/image/_image.scss b/components/01_Atoms/image/_image.scss new file mode 100644 index 0000000..a90c54e --- /dev/null +++ b/components/01_Atoms/image/_image.scss @@ -0,0 +1,4 @@ +.LP-Image{ + max-width:100%; + max-height:100%; +} \ No newline at end of file diff --git a/components/01_Atoms/image/image.config.json b/components/01_Atoms/image/image.config.json new file mode 100644 index 0000000..4eb7c3f --- /dev/null +++ b/components/01_Atoms/image/image.config.json @@ -0,0 +1,3 @@ +{ + +} \ No newline at end of file diff --git a/components/01_Atoms/image/image.hbs b/components/01_Atoms/image/image.hbs new file mode 100644 index 0000000..85682c7 --- /dev/null +++ b/components/01_Atoms/image/image.hbs @@ -0,0 +1,23 @@ + + +
+ +
+ +

+ +
+ +
+ +

+ +
+ +
+ +

+ +
+ +
\ No newline at end of file diff --git a/components/01_Atoms/input/_input.scss b/components/01_Atoms/input/_input.scss new file mode 100644 index 0000000..35bcdde --- /dev/null +++ b/components/01_Atoms/input/_input.scss @@ -0,0 +1,76 @@ +.LP-Input{ + $-margin-bottom: 30px; + display: flex; + flex-direction: column; + margin-bottom: -$-margin-bottom; + padding: 10px 0; + + .LP-Input__Field{ + border: none; + border-bottom: 1px solid $-grey; + padding: 8px; + margin-bottom: $-margin-bottom; + + &:focus, &:active{ + margin-bottom: $-margin-bottom - 1px; + border-bottom: 2px solid $-wine-red; + background-color: $-almost-white; + border-radius: 3px 3px 0 0; + } + } + + .LP-Input__Label{ + font-family: $-primary-sans-serif-font; + font-size: 16px; + } + + .LP-Input__Message{ + font-family: $-primary-sans-serif-font; + font-style: italic; + font-size: 13px; + padding: 3px; + position: relative; + top: -$-margin-bottom; + + &:before{ + content: '* '; + } + } + + &--error{ + .LP-Input__Field{ + margin-bottom: 25px; + border-bottom: 2px solid $-wine-red; + margin-bottom: $-margin-bottom - 1px; + } + + .LP-Input__Message{ + color: $-wine-red; + } + } + + &--disabled{ + .LP-Input__Field, .LP-Input__Field:disabled{ + background-color: transparent; + border-bottom: 1px dashed $-grey; + cursor: not-allowed; + + label + &{ + color: red; + } + + &:focus, &:active{ + margin-bottom: $-margin-bottom; + border-radius: 0; + } + + ~.LP-Input__Message{ + visibility: hidden; + } + } + + .LP-Input__Label{ + color: $-grey; + } + } +} \ No newline at end of file diff --git a/components/01_Atoms/input/input.config.json b/components/01_Atoms/input/input.config.json new file mode 100644 index 0000000..71bf134 --- /dev/null +++ b/components/01_Atoms/input/input.config.json @@ -0,0 +1,28 @@ +{ + "context": { + "label": "Enter your value here", + "placeholder": "A sample value" + }, + "variants": [ + { + "name": "With message", + "context":{ + "message": "Please fill in anything valuable" + } + }, + { + "name": "disabled", + "context": { + "modifier": "--disabled", + "disabled": true + } + }, + { + "name": "error", + "context": { + "modifier": "--error", + "message": "This field is required" + } + } + ] +} \ No newline at end of file diff --git a/components/01_Atoms/input/input.hbs b/components/01_Atoms/input/input.hbs new file mode 100644 index 0000000..6ca9f97 --- /dev/null +++ b/components/01_Atoms/input/input.hbs @@ -0,0 +1,11 @@ +
+ + + {{#if message}} + {{message}} + {{/if}} +
\ No newline at end of file diff --git a/components/01_Atoms/link/_link.scss b/components/01_Atoms/link/_link.scss index d73a5a0..b7bd75f 100644 --- a/components/01_Atoms/link/_link.scss +++ b/components/01_Atoms/link/_link.scss @@ -1,15 +1,15 @@ .LP-Link { - color: $-secondary-color; + color: $-grey; text-decoration: none; font-family: $-primary-sans-serif-accent-font; &:hover { - color: $-secondary-accent-color; + color: $-light-brown; } .LP-Text{ font-family: $-primary-sans-serif-accent-font; &:hover{ - color: $-secondary-accent-color; + color: $-light-brown; } } } diff --git a/components/02_Molecules/logo/_logo.scss b/components/01_Atoms/logo/_logo.scss similarity index 100% rename from components/02_Molecules/logo/_logo.scss rename to components/01_Atoms/logo/_logo.scss diff --git a/components/02_Molecules/logo/logo.config.json b/components/01_Atoms/logo/logo.config.json similarity index 100% rename from components/02_Molecules/logo/logo.config.json rename to components/01_Atoms/logo/logo.config.json diff --git a/components/02_Molecules/logo/logo.hbs b/components/01_Atoms/logo/logo.hbs similarity index 100% rename from components/02_Molecules/logo/logo.hbs rename to components/01_Atoms/logo/logo.hbs diff --git a/components/01_Atoms/text/_text.scss b/components/01_Atoms/paragraph/_paragraph.scss similarity index 60% rename from components/01_Atoms/text/_text.scss rename to components/01_Atoms/paragraph/_paragraph.scss index 8bad50c..5539b03 100644 --- a/components/01_Atoms/text/_text.scss +++ b/components/01_Atoms/paragraph/_paragraph.scss @@ -1,5 +1,5 @@ -.LP-Text { +.LP-Paragraph { color: black; font-family: $-primary-serif-font; - font-size: 1.2rem; + font-size: 1.2rem; } \ No newline at end of file diff --git a/components/01_Atoms/text/text.config.json b/components/01_Atoms/paragraph/paragraph.config.json similarity index 96% rename from components/01_Atoms/text/text.config.json rename to components/01_Atoms/paragraph/paragraph.config.json index ff15fc3..564f297 100644 --- a/components/01_Atoms/text/text.config.json +++ b/components/01_Atoms/paragraph/paragraph.config.json @@ -1,5 +1,8 @@ { "context": { "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet." - } + }, + "variants": [ + + ] } \ No newline at end of file diff --git a/components/01_Atoms/paragraph/paragraph.hbs b/components/01_Atoms/paragraph/paragraph.hbs new file mode 100644 index 0000000..f1d81cf --- /dev/null +++ b/components/01_Atoms/paragraph/paragraph.hbs @@ -0,0 +1 @@ +

{{text}}

\ No newline at end of file diff --git a/components/01_Atoms/tag/_tag.scss b/components/01_Atoms/tag/_tag.scss new file mode 100644 index 0000000..2fb9ddc --- /dev/null +++ b/components/01_Atoms/tag/_tag.scss @@ -0,0 +1,14 @@ +.LP-Tag{ + padding: 8px 14px; + background-color: #D7CEC7; + border-radius: 2px; + width: max-content; + + .LP-Paragraph{ + padding: 0; + margin: 0; + font-family: $-primary-sans-serif-font; + font-size: 1em; + display: inline; + } +} \ No newline at end of file diff --git a/components/01_Atoms/tag/tag.config.json b/components/01_Atoms/tag/tag.config.json new file mode 100644 index 0000000..b745862 --- /dev/null +++ b/components/01_Atoms/tag/tag.config.json @@ -0,0 +1,6 @@ +{ + "title": "Tag", + "context": { + "text": "Im a tag" + } +} \ No newline at end of file diff --git a/components/01_Atoms/tag/tag.hbs b/components/01_Atoms/tag/tag.hbs new file mode 100644 index 0000000..55cc3e3 --- /dev/null +++ b/components/01_Atoms/tag/tag.hbs @@ -0,0 +1,3 @@ +
+ {{> @paragraph text=text}} +
\ No newline at end of file diff --git a/components/01_Atoms/text/text.hbs b/components/01_Atoms/text/text.hbs deleted file mode 100644 index 391e23a..0000000 --- a/components/01_Atoms/text/text.hbs +++ /dev/null @@ -1 +0,0 @@ -

{{text}}

\ No newline at end of file diff --git a/components/02_Molecules/_molecules.scss b/components/02_Molecules/_molecules.scss index be1a91d..7219798 100644 --- a/components/02_Molecules/_molecules.scss +++ b/components/02_Molecules/_molecules.scss @@ -1,4 +1,3 @@ -@import 'logo/logo'; @import 'textSection/textSection'; -@import 'place/place'; -@import 'securityMeasureList/securityMeasureList'; \ No newline at end of file +@import 'placeTeaser/placeTeaser'; +@import 'tagList/tagList'; \ No newline at end of file diff --git a/components/02_Molecules/place/_place.scss b/components/02_Molecules/place/_place.scss deleted file mode 100644 index 150076b..0000000 --- a/components/02_Molecules/place/_place.scss +++ /dev/null @@ -1,42 +0,0 @@ -.LP-Place{ - .LP-Place__Image{ - width: 280px; - height: 165px; - object-fit: fill; - } - - .LP-Place__Assets{ - display: flex; - align-items: center; - justify-content: space-between; - margin-top: 0.8rem; - - padding: 0 10px; - padding-bottom: 10px; - } - - .LP-Place__Info{ - - .LP-Place__Title{ - font-family: $-primary-sans-serif-font; - color: $-secondary-color; - font-size: 1rem; - padding: 0px; - margin: 0px; - } - - .LP-Place__Description{ - font-family: $-primary-sans-serif-accent-font; - color: $-secondary-color; - } - - .LP-Place__Detail{ - font-family: $-primary-sans-serif-font; - padding: 0; - margin: 0; - margin-top: 5px; - font-size: 0.9rem; - } - } - -} \ No newline at end of file diff --git a/components/02_Molecules/place/place.config.json b/components/02_Molecules/place/place.config.json deleted file mode 100644 index 567b18e..0000000 --- a/components/02_Molecules/place/place.config.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "context": { - "image": "/images/photo_2020-05-02_18-11-21.jpg", - "title": "Kokerei Wiescherhöfen", - "location": "Hamm (Westfalen)" - } -} \ No newline at end of file diff --git a/components/02_Molecules/place/place.hbs b/components/02_Molecules/place/place.hbs deleted file mode 100644 index 8a43707..0000000 --- a/components/02_Molecules/place/place.hbs +++ /dev/null @@ -1,20 +0,0 @@ -
- -
-
-

{{title}}

-

{{location}}

-
- {{# if description}} -

- {{description}} -

- {{/if}} - - -
-
\ No newline at end of file diff --git a/components/02_Molecules/placeTeaser/_placeTeaser.scss b/components/02_Molecules/placeTeaser/_placeTeaser.scss new file mode 100644 index 0000000..58a8627 --- /dev/null +++ b/components/02_Molecules/placeTeaser/_placeTeaser.scss @@ -0,0 +1,93 @@ +.LP-PlaceTeaser{ + width: 280px; + + .LP-PlaceTeaser__Image{ + height: 165px; + width: 280px; + overflow: hidden; + + .LP-Image{ + max-width:unset; + max-height:unset; + object-fit: cover; + } + } + + .LP-PlaceTeaser__Meta{ + display: flex; + align-items: center; + justify-content: space-between; + padding-bottom: 10px; + + .LP-Paragraph{ + font-family: $-primary-sans-serif-font; + padding: 0; + margin: 0; + margin-top: 5px; + font-size: 0.9rem; + } + + .LP-Headline{ + font-family: $-primary-sans-serif-font; + color: $-grey; + font-size: 1rem; + padding: 0px; + margin: 0px; + } + } + + .LP-PlaceTeaser__Description{ + font-family: $-primary-sans-serif-accent-font; + color: $-grey; + display: none; + } +} + +@media(min-width: $-viewport-small){ + .LP-PlaceTeaser--extended{ + display: flex; + flex-direction: row; + width: auto; + padding-right: 25px; + height: 165px; + + .LP-PlaceTeaser__Meta{ + margin: 0; + padding: 5px; + padding-left: 25px; + display: flex; + flex-direction: column; + justify-content: space-between; + align-items: flex-start; + + .LP-PlaceTeaser__Info{ + .LP-Headline{ + font-size: 28px; + } + } + + .LP-PlaceTeaser__Icons{ + margin-top: auto; + + ul{ + padding: 0; + margin: 0; + } + } + } + + .LP-PlaceTeaser__Description{ + display: block; + max-height: 55px; + overflow: hidden; + } + + .LP-PlaceTeaser__Image{ + height:165px; + width: 280px; + flex-shrink: 0; + flex-grow: 0; + + } + } +} \ No newline at end of file diff --git a/components/02_Molecules/placeTeaser/placeTeaser.config.json b/components/02_Molecules/placeTeaser/placeTeaser.config.json new file mode 100644 index 0000000..8796219 --- /dev/null +++ b/components/02_Molecules/placeTeaser/placeTeaser.config.json @@ -0,0 +1,16 @@ +{ + "context": { + "image": "/images/photo_2020-05-02_18-11-21.jpg", + "title": "Kokerei Wiescherhöfen", + "location": "Hamm (Westfalen)", + "description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. " + }, + "variants": [ + { + "name": "Extended", + "context": { + "modifier": "--extended" + } + } + ] +} \ No newline at end of file diff --git a/components/02_Molecules/placeTeaser/placeTeaser.hbs b/components/02_Molecules/placeTeaser/placeTeaser.hbs new file mode 100644 index 0000000..fa5c68c --- /dev/null +++ b/components/02_Molecules/placeTeaser/placeTeaser.hbs @@ -0,0 +1,21 @@ +
+
+ +
+
+
+ {{> @headline headline=title modifier='--teaser'}} + {{> @paragraph text=location}} +
+
+ {{> @paragraph text=description}} +
+
+
    +
  • +
  • +
  • +
+
+
+
\ No newline at end of file diff --git a/components/02_Molecules/securityMeasureList/_securityMeasureList.scss b/components/02_Molecules/securityMeasureList/_securityMeasureList.scss deleted file mode 100644 index cd04197..0000000 --- a/components/02_Molecules/securityMeasureList/_securityMeasureList.scss +++ /dev/null @@ -1,18 +0,0 @@ -.LP-SecurityMeasure__List{ - list-style-type: none; - display: flex; - flex-wrap: wrap; - padding:0; - margin: 0; - - .LP-SecurityMeasure__Item{ - margin: 5px 5px; - padding: 5px 8px; - background-color: #D7CEC7; - border-radius: 2px; - .LP-Text{ - font-family: $-primary-sans-serif-font; - font-size: 1.2rem; - } - } -} \ No newline at end of file diff --git a/components/02_Molecules/securityMeasureList/securityMeasureList.config.json b/components/02_Molecules/securityMeasureList/securityMeasureList.config.json deleted file mode 100644 index 9e26dfe..0000000 --- a/components/02_Molecules/securityMeasureList/securityMeasureList.config.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/components/02_Molecules/securityMeasureList/securityMeasureList.hbs b/components/02_Molecules/securityMeasureList/securityMeasureList.hbs deleted file mode 100644 index ac9de01..0000000 --- a/components/02_Molecules/securityMeasureList/securityMeasureList.hbs +++ /dev/null @@ -1,7 +0,0 @@ - \ No newline at end of file diff --git a/components/02_Molecules/tagList/_tagList.scss b/components/02_Molecules/tagList/_tagList.scss new file mode 100644 index 0000000..ed74575 --- /dev/null +++ b/components/02_Molecules/tagList/_tagList.scss @@ -0,0 +1,13 @@ +.LP-TagList{ + .LP-TagList__List{ + list-style-type: none; + display: flex; + flex-wrap: wrap; + padding:0; + margin: 0; + + .LP-TagList__Item{ + margin: 6px; + } + } +} \ No newline at end of file diff --git a/components/02_Molecules/tagList/tagList.config.json b/components/02_Molecules/tagList/tagList.config.json new file mode 100644 index 0000000..8a5c339 --- /dev/null +++ b/components/02_Molecules/tagList/tagList.config.json @@ -0,0 +1,11 @@ +{ + "title": "TagList", + "context": { + "tags": [ + "Kamera", + "Wachhund", + "Zaun", + "Security" + ] + } +} \ No newline at end of file diff --git a/components/02_Molecules/tagList/tagList.hbs b/components/02_Molecules/tagList/tagList.hbs new file mode 100644 index 0000000..437a218 --- /dev/null +++ b/components/02_Molecules/tagList/tagList.hbs @@ -0,0 +1,7 @@ +
+ +
\ No newline at end of file diff --git a/components/02_Molecules/textSection/textSection.config.json b/components/02_Molecules/textSection/textSection.config.json index 9e26dfe..d04a2d7 100644 --- a/components/02_Molecules/textSection/textSection.config.json +++ b/components/02_Molecules/textSection/textSection.config.json @@ -1 +1,6 @@ -{} \ No newline at end of file +{ + "context": { + "headline": "At vero eos et accusam et justo duo dolores", + "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet." + } +} \ No newline at end of file diff --git a/components/02_Molecules/textSection/textSection.hbs b/components/02_Molecules/textSection/textSection.hbs index 4bf5d0e..ec3dd13 100644 --- a/components/02_Molecules/textSection/textSection.hbs +++ b/components/02_Molecules/textSection/textSection.hbs @@ -1,4 +1,4 @@
{{> @headline headline=headline}} - {{> @text text=text}} + {{> @paragraph text=text}}
\ No newline at end of file diff --git a/components/03_Organisms/_organisms.scss b/components/03_Organisms/_organisms.scss index 8155ad7..7c51b0a 100644 --- a/components/03_Organisms/_organisms.scss +++ b/components/03_Organisms/_organisms.scss @@ -1,7 +1,7 @@ @import 'header/header'; @import 'navigation/navigation'; -@import 'introduction/introduction'; @import 'placeGrid/placeGrid'; @import 'placeList/placeList'; @import 'linkList/linkList'; -@import 'footer/footer'; \ No newline at end of file +@import 'footer/footer'; +@import 'form/form'; \ No newline at end of file diff --git a/components/03_Organisms/footer/_footer.scss b/components/03_Organisms/footer/_footer.scss index 22dd053..10de81e 100644 --- a/components/03_Organisms/footer/_footer.scss +++ b/components/03_Organisms/footer/_footer.scss @@ -1,7 +1,7 @@ .LP-Footer{ margin-top: 75px; width: 100%; - background-color: $-secondary-color; + background-color: $-grey; padding: 25px; .LP-LinkList__List{ @@ -14,7 +14,7 @@ width: auto; .LP-Text{ - color: $-secondary-background-color; + color: $-almost-white; font-size: 17px; } diff --git a/components/03_Organisms/form/_form.scss b/components/03_Organisms/form/_form.scss new file mode 100644 index 0000000..d587ee9 --- /dev/null +++ b/components/03_Organisms/form/_form.scss @@ -0,0 +1,71 @@ +.LP-Form{ + max-width: 900px; + .LP-Form__Fieldset{ + border: none; + + .LP-Form__Legend{ + margin: 0; + padding: 0; + } + + .LP-Form__Composition{ + display: flex; + flex-direction: row; + justify-content: space-between; + + .LP-Form__Field{ + flex: 3 1 100px; + padding: 6px 15px; + + &--wider{ + flex: 5 1 200px; + } + + &--wide{ + flex: 4 1 150px; + } + + &--narrow{ + flex: 2 0 50px; + } + + &--narrower{ + flex: 1 0 25px; + } + + input{ + width: 100%; + } + } + } + } +} + +@media(max-width: $-viewport-small){ + .LP-Form{ + .LP-Form__Fieldset{ + .LP-Form__Composition--breakable{ + display: flex; + flex-direction: column; + justify-content: space-between; + } + } + } +} + +@media(max-width: $-viewport-extra-small){ + .LP-Form{ + .LP-Form__Fieldset{ + .LP-Form__Composition{ + display: flex; + flex-direction: column; + justify-content: space-between; + + .LP-Form__Field{ + flex: 3 1 100px; + padding: 12px 15px; + } + } + } + } +} \ No newline at end of file diff --git a/components/03_Organisms/form/form.config.json b/components/03_Organisms/form/form.config.json new file mode 100644 index 0000000..544b7b4 --- /dev/null +++ b/components/03_Organisms/form/form.config.json @@ -0,0 +1,3 @@ +{ + +} \ No newline at end of file diff --git a/components/03_Organisms/form/form.hbs b/components/03_Organisms/form/form.hbs new file mode 100644 index 0000000..47e6b45 --- /dev/null +++ b/components/03_Organisms/form/form.hbs @@ -0,0 +1,52 @@ +
+
+ Basic data + +
+
+
+ + + Field is required +
+
+
+
+ + +
+
+
+
+ + +
+
+
+ +
+
+ + + We won't send any stalkers, promise +
+
+ + + Field is required +
+
+ +
+
+ + +
+
+ + +
+
+ +
+
\ No newline at end of file diff --git a/components/03_Organisms/introduction/_introduction.scss b/components/03_Organisms/introduction/_introduction.scss deleted file mode 100644 index a94e88e..0000000 --- a/components/03_Organisms/introduction/_introduction.scss +++ /dev/null @@ -1,10 +0,0 @@ -.LP-Introduction{ - - .LP-Headline{ - font-size: 2rem; - } - - .LP-Text{ - font-size: 1.3rem; - } -} \ No newline at end of file diff --git a/components/03_Organisms/introduction/introduction.config.json b/components/03_Organisms/introduction/introduction.config.json deleted file mode 100644 index e885220..0000000 --- a/components/03_Organisms/introduction/introduction.config.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "context": {} -} \ No newline at end of file diff --git a/components/03_Organisms/introduction/introduction.hbs b/components/03_Organisms/introduction/introduction.hbs deleted file mode 100644 index 6fec9bb..0000000 --- a/components/03_Organisms/introduction/introduction.hbs +++ /dev/null @@ -1,4 +0,0 @@ - -
- {{> @textsection headline='Welcome to the urban exploring registry' text='Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.'}} -
\ No newline at end of file diff --git a/components/03_Organisms/linkList/_linkList.scss b/components/03_Organisms/linkList/_linkList.scss index cde7980..cd48ec6 100644 --- a/components/03_Organisms/linkList/_linkList.scss +++ b/components/03_Organisms/linkList/_linkList.scss @@ -6,7 +6,7 @@ padding: 0; .LP-LinkList__Item{ - border-left: 1px solid $-secondary-accent-color; + border-left: 1px solid $-light-brown; width: 100%; margin-top: 12px; height: 55px; @@ -16,7 +16,7 @@ padding: $-link-padding 0 $-link-padding $-link-padding; width: calc(100% - $-link-padding); display: block; - color: $-secondary-color; + color: $-grey; &--iconized{ @@ -34,8 +34,8 @@ &:hover{ - background-color: $-secondary-background-color; - color: $-primary-accent-color; + background-color: $-almost-white; + color: $-wine-red; } .LP-Text{ @@ -48,7 +48,7 @@ .LP-Link__Icon{ width: 2em; height: 2em; - fill: $-primary-accent-color; + fill: $-wine-red; line-height: 5em; } diff --git a/components/03_Organisms/navigation/_navigation.scss b/components/03_Organisms/navigation/_navigation.scss index 0e73cde..9818644 100644 --- a/components/03_Organisms/navigation/_navigation.scss +++ b/components/03_Organisms/navigation/_navigation.scss @@ -14,11 +14,11 @@ } .LP-Link__Text { - color: $-secondary-color; + color: $-grey; font-weight: bold; text-shadow: 0px 0px 20px white; &:hover{ - color: $-primary-accent-color; + color: $-wine-red; } } } \ No newline at end of file diff --git a/components/03_Organisms/placeGrid/_placeGrid.scss b/components/03_Organisms/placeGrid/_placeGrid.scss index f7bdf86..c53c215 100644 --- a/components/03_Organisms/placeGrid/_placeGrid.scss +++ b/components/03_Organisms/placeGrid/_placeGrid.scss @@ -1,26 +1,22 @@ -.LP-Place__Grid{ - margin: 0; - padding: 0; - list-style-type: none; - display: flex; - flex-direction: row; - flex-wrap: wrap; +.LP-PlaceGrid{ + .LP-PlaceGrid__Grid{ + margin: 0; + padding: 0; + list-style-type: none; + display: flex; + flex-direction: row; + flex-wrap: wrap; - >.LP-Place__Item{ - margin: 0 15px; - - margin-bottom: 50px; - } + .LP-PlaceGrid__Item{ + margin: 18px; + } - .LP-Link{ - .LP-Place__Description{ - display:none; - } - - .LP-Place{ - &:hover{ - box-shadow: 0 0 8px $-secondary-color; - } - } - } + .LP-Link{ + .LP-PlaceTeaser{ + &:hover{ + box-shadow: 0 0 2px $-grey; + } + } + } + } } \ No newline at end of file diff --git a/components/03_Organisms/placeGrid/placeGrid.config.json b/components/03_Organisms/placeGrid/placeGrid.config.json index 9e26dfe..bfca853 100644 --- a/components/03_Organisms/placeGrid/placeGrid.config.json +++ b/components/03_Organisms/placeGrid/placeGrid.config.json @@ -1 +1,31 @@ -{} \ No newline at end of file +{ + "title": "PlaceGrid", + "context":{ + "places": [ + { + "image": "/images/photo_2020-04-09_18-27-13.jpg", + "name": "Haus Maikotten", + "location": "Münster (westfalen)", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat." + }, + { + "image": "/images/Bildschirmfoto_von_2020-07-13_11-03-07.png", + "name": "Kokerei in Hamm", + "location": "Hamm (westfalen)", + "description": "" + }, + { + "image": "/images/Bildschirmfoto_von_2020-07-13_20-15-00.png", + "name": "Noch ein Zementwerk", + "location": "Beckum (Westfalen)", + "description": "" + }, + { + "image": "/images/photo_2020-05-02_18-11-21.jpg", + "name": "Zementwerk Mersmann", + "location": "Beckum (Westfalen)", + "description": "" + } + ] + } +} \ No newline at end of file diff --git a/components/03_Organisms/placeGrid/placeGrid.hbs b/components/03_Organisms/placeGrid/placeGrid.hbs index 3253207..a486627 100644 --- a/components/03_Organisms/placeGrid/placeGrid.hbs +++ b/components/03_Organisms/placeGrid/placeGrid.hbs @@ -1,37 +1,12 @@ -
-
- {{> @headline headline='Explorere the latest locations'}} - -
+
+ {{> @headline headline='Explorere the latest locations'}} +
diff --git a/components/03_Organisms/placeList/_placeList.scss b/components/03_Organisms/placeList/_placeList.scss index a2adc4a..7662cfb 100644 --- a/components/03_Organisms/placeList/_placeList.scss +++ b/components/03_Organisms/placeList/_placeList.scss @@ -1,58 +1,28 @@ -.LP-Place__List{ - list-style-type: none; - - .LP-Link{ - .LP-Place{ - &:hover{ - color: $-secondary-color; - background-color: $-secondary-background-color; - - - $-hover-offset: 2px; - position: relative; - left: -$-hover-offset; - >.LP-Place__Image{ - border-left: $-hover-offset $-secondary-color solid; - } - } - } - } - - .LP-Place__Item{ - max-width: 900px; - min-width: 450px; - margin: 18px 0; - .LP-Place{ - display: flex; - flex-direction: row; - width: auto; - padding-right: 25px; - - .LP-Place__Assets{ - margin: 0; - padding: 0; - padding-left: 25px; - display: flex; - flex-direction: column; - justify-content: space-between; - align-items: flex-start; - - .LP-Place__Info{ - .LP-Place__Title{ - font-size: 28px; - } - } - - .LP-Icon__List{ - justify-self: flex-end; - } - } - - >.LP-Place__Image{ - height:168px; - width: 280px; - } - } - - } +.LP-PlaceList{ + .LP-PlaceList__List{ + list-style-type: none; + + .LP-Link{ + .LP-Place{ + &:hover{ + color: $-grey; + background-color: $-almost-white; + + + $-hover-offset: 2px; + position: relative; + left: -$-hover-offset; + >.LP-Place__Image{ + border-left: $-hover-offset $-grey solid; + } + } + } + } + + .LP-PlaceList__Item{ + max-width: 900px; + min-width: 450px; + margin: 18px 0; + } + } } \ No newline at end of file diff --git a/components/03_Organisms/placeList/placeList.config.json b/components/03_Organisms/placeList/placeList.config.json index 9e26dfe..5ea0c55 100644 --- a/components/03_Organisms/placeList/placeList.config.json +++ b/components/03_Organisms/placeList/placeList.config.json @@ -1 +1,31 @@ -{} \ No newline at end of file +{ + "title": "PlaceList", + "context": { + "places": [ + { + "image": "/images/photo_2020-04-09_18-27-13.jpg", + "name": "Haus Maikotten", + "location": "Münster (westfalen)", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat." + }, + { + "image": "/images/Bildschirmfoto_von_2020-07-13_11-03-07.png", + "name": "Kokerei in Hamm", + "location": "Hamm (westfalen)", + "description": "" + }, + { + "image": "/images/Bildschirmfoto_von_2020-07-13_20-15-00.png", + "name": "Noch ein Zementwerk", + "location": "Beckum (Westfalen)", + "description": "" + }, + { + "image": "/images/photo_2020-05-02_18-11-21.jpg", + "name": "Zementwerk Mersmann", + "location": "Beckum (Westfalen)", + "description": "" + } + ] + } +} \ No newline at end of file diff --git a/components/03_Organisms/placeList/placeList.hbs b/components/03_Organisms/placeList/placeList.hbs index 16e8c10..3e72217 100644 --- a/components/03_Organisms/placeList/placeList.hbs +++ b/components/03_Organisms/placeList/placeList.hbs @@ -1,32 +1,12 @@ - \ No newline at end of file +
+ {{> @headline headline='Listing our places'}} + +
\ No newline at end of file diff --git a/components/04_Templates/home/_home.scss b/components/04_Templates/home/_home.scss index fcbaabe..4fca2af 100644 --- a/components/04_Templates/home/_home.scss +++ b/components/04_Templates/home/_home.scss @@ -4,5 +4,5 @@ } .LP-HorizontalLine{ - color: $-secondary-color; + color: $-grey; } \ No newline at end of file diff --git a/components/04_Templates/placeOverview/_placeOverview.scss b/components/04_Templates/placeOverview/_placeOverview.scss index 915bfa7..1c0771f 100644 --- a/components/04_Templates/placeOverview/_placeOverview.scss +++ b/components/04_Templates/placeOverview/_placeOverview.scss @@ -4,7 +4,7 @@ .LP-PlaceOveriew__Image{ width: 700px; height: 450px; - box-shadow: 0 0 10px $-secondary-color; + box-shadow: 0 0 10px $-grey; object-fit: cover; float: right; @@ -28,7 +28,7 @@ .LP-PlaceOverView__ImageItem{ img { - box-shadow: 0 0 5px $-secondary-color; + box-shadow: 0 0 5px $-grey; height: 200px; width: 290px; object-fit: cover; diff --git a/components/_preview.hbs b/components/_preview.hbs index 14f7d55..a85fc91 100644 --- a/components/_preview.hbs +++ b/components/_preview.hbs @@ -6,10 +6,6 @@ Preview - {{> @header}} -
- {{{ yield }}} -
- {{> @footer}} + {{{ yield }}} \ No newline at end of file diff --git a/components/components.scss b/components/components.scss index 273dfa3..6ecd82d 100644 --- a/components/components.scss +++ b/components/components.scss @@ -1,13 +1,35 @@ -$-primary-color: #D7CEC7; -$-secondary-color: #565656; -$-primary-accent-color: #76323F; -$-secondary-accent-color: #C09F80; -$-secondary-background-color: #f9f9f9; +@font-face { + font-family: Crimson; + src: + url('fonts/Crimson/CrimsonText-Regular.ttf'), + url('fonts/Crimson/CrimsonText-Bold.ttf'), + url('fonts/Crimson/CrimsonText-Italic.ttf') + ; + } -$-primary-sans-serif-font: "Trebuchet MS", Helvetica, sans-serif; -$-primary-serif-font: "Times New Roman", Times, serif; + @font-face { + font-family: Montserrat; + src: + url('fonts/Montserrat/Montserrat-Regular.otf'), + url('fonts/Montserrat/Montserrat-Bold.otf'), + url('fonts/Montserrat/Montserrat-Italic.otf') + ; + } + +$-beige: #D7CEC7; +$-grey: #565656; +$-wine-red: #76323F; +$-light-brown: #C09F80; +$-almost-white: #f9f9f9; + +$-primary-sans-serif-font: Montserrat, Helvetica, sans-serif; +$-primary-serif-font: Crimson, Times, serif; $-primary-sans-serif-accent-font: Roboto, Arial, sans-serif; +$-viewport-small: 650px; +$-viewport-extra-small: 450px; + + @import '01_Atoms/atoms'; @import '02_Molecules/molecules'; @import '03_Organisms/organisms'; diff --git a/package.json b/package.json index 14dcf68..632c6f8 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "communitea", + "name": "Lostplaces", "version": "0.1.0", "dependencies": { "@frctl/fractal": "^1.2.1", diff --git a/public/components.css b/public/components.css index 3fca665..b3a3cac 100644 --- a/public/components.css +++ b/public/components.css @@ -1,3 +1,11 @@ +@font-face { + font-family: Crimson; + src: url("fonts/Crimson/CrimsonText-Regular.ttf"), url("fonts/Crimson/CrimsonText-Bold.ttf"), url("fonts/Crimson/CrimsonText-Italic.ttf"); } + +@font-face { + font-family: Montserrat; + src: url("fonts/Montserrat/Montserrat-Regular.otf"), url("fonts/Montserrat/Montserrat-Bold.otf"), url("fonts/Montserrat/Montserrat-Italic.otf"); } + .LP-Link { color: #565656; text-decoration: none; @@ -13,7 +21,7 @@ display: inline; } .LP-Headline { - font-family: "Trebuchet MS", Helvetica, sans-serif; + font-family: Montserrat, Helvetica, sans-serif; color: #565656; font-size: 1.7rem; padding-top: 0px; @@ -27,9 +35,9 @@ .LP-Headline--inline { display: inline; } -.LP-Text { +.LP-Paragraph { color: black; - font-family: "Times New Roman", Times, serif; + font-family: Crimson, Times, serif; font-size: 1.2rem; } .LP-Icon { @@ -45,6 +53,78 @@ .LP-Icon__List .LP-Icon__Item { padding: 0 3px; } +.LP-Button { + background-color: #C09F80; + color: #565656; + border: none; + padding: 8px 14px; + border-radius: 2px; + font-weight: bold; } + .LP-Button:active { + background-color: #76323F; + color: #C09F80; } + +.LP-Form .LP-Form__Checkbox { + display: none; } + +.LP-Form .LP-Form__CheckBox__CheckMark { + height: 1em; + width: 1em; + border: 1px solid black; + padding: 0 calc(.5em + 2px); + margin-right: .7em; } + +.LP-Input { + display: flex; + flex-direction: column; + margin-bottom: -30px; + padding: 10px 0; } + .LP-Input .LP-Input__Field { + border: none; + border-bottom: 1px solid #565656; + padding: 8px; + margin-bottom: 30px; } + .LP-Input .LP-Input__Field:focus, .LP-Input .LP-Input__Field:active { + margin-bottom: 29px; + border-bottom: 2px solid #76323F; + background-color: #f9f9f9; + border-radius: 3px 3px 0 0; } + .LP-Input .LP-Input__Label { + font-family: Montserrat, Helvetica, sans-serif; + font-size: 16px; } + .LP-Input .LP-Input__Message { + font-family: Montserrat, Helvetica, sans-serif; + font-style: italic; + font-size: 13px; + padding: 3px; + position: relative; + top: -30px; } + .LP-Input .LP-Input__Message:before { + content: '* '; } + .LP-Input--error .LP-Input__Field { + margin-bottom: 25px; + border-bottom: 2px solid #76323F; + margin-bottom: 29px; } + .LP-Input--error .LP-Input__Message { + color: #76323F; } + .LP-Input--disabled .LP-Input__Field, .LP-Input--disabled .LP-Input__Field:disabled { + background-color: transparent; + border-bottom: 1px dashed #565656; + cursor: not-allowed; } + label + .LP-Input--disabled .LP-Input__Field, label + .LP-Input--disabled .LP-Input__Field:disabled { + color: red; } + .LP-Input--disabled .LP-Input__Field:focus, .LP-Input--disabled .LP-Input__Field:active, .LP-Input--disabled .LP-Input__Field:disabled:focus, .LP-Input--disabled .LP-Input__Field:disabled:active { + margin-bottom: 30px; + border-radius: 0; } + .LP-Input--disabled .LP-Input__Field ~ .LP-Input__Message, .LP-Input--disabled .LP-Input__Field:disabled ~ .LP-Input__Message { + visibility: hidden; } + .LP-Input--disabled .LP-Input__Label { + color: #565656; } + +.LP-Image { + max-width: 100%; + max-height: 100%; } + .LP-Logo { max-width: 100%; max-height: 100%; @@ -61,36 +141,32 @@ .LP-TextSection .LP-Text { line-height: 1.4rem; } -.LP-Place .LP-Place__Image { - width: 280px; - height: 165px; - object-fit: fill; } - -.LP-Place .LP-Place__Assets { - display: flex; - align-items: center; - justify-content: space-between; - margin-top: 0.8rem; - padding: 0 10px; - padding-bottom: 10px; } - -.LP-Place .LP-Place__Info .LP-Place__Title { - font-family: "Trebuchet MS", Helvetica, sans-serif; - color: #565656; - font-size: 1rem; - padding: 0px; - margin: 0px; } - -.LP-Place .LP-Place__Info .LP-Place__Description { - font-family: Roboto, Arial, sans-serif; - color: #565656; } - -.LP-Place .LP-Place__Info .LP-Place__Detail { - font-family: "Trebuchet MS", Helvetica, sans-serif; - padding: 0; - margin: 0; - margin-top: 5px; - font-size: 0.9rem; } +.LP-Place { + width: 280px; } + .LP-Place .LP-Place__Image { + height: 165px; + object-fit: fill; } + .LP-Place .LP-Place__Meta { + display: flex; + align-items: center; + justify-content: space-between; + padding-bottom: 10px; } + .LP-Place .LP-Place__Meta .LP-Paragraph { + font-family: Montserrat, Helvetica, sans-serif; + padding: 0; + margin: 0; + margin-top: 5px; + font-size: 0.9rem; } + .LP-Place .LP-Place__Meta .LP-Headline { + font-family: Montserrat, Helvetica, sans-serif; + color: #565656; + font-size: 1rem; + padding: 0px; + margin: 0px; } + .LP-Place .LP-Place__Description { + font-family: Roboto, Arial, sans-serif; + color: #565656; + display: none; } .LP-SecurityMeasure__List { list-style-type: none; @@ -104,7 +180,7 @@ background-color: #D7CEC7; border-radius: 2px; } .LP-SecurityMeasure__List .LP-SecurityMeasure__Item .LP-Text { - font-family: "Trebuchet MS", Helvetica, sans-serif; + font-family: Montserrat, Helvetica, sans-serif; font-size: 1.2rem; } .LP-Header { @@ -254,6 +330,46 @@ .LP-Footer .LP-LinkList__List .LP-LinkList__Item .LP-Link:hover { background-color: inherit; } +.LP-Form { + max-width: 900px; } + .LP-Form .LP-Form__Fieldset { + border: none; } + .LP-Form .LP-Form__Fieldset .LP-Form__Legend { + margin: 0; + padding: 0; } + .LP-Form .LP-Form__Fieldset .LP-Form__Composition { + display: flex; + flex-direction: row; + justify-content: space-between; } + .LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field { + flex: 3 1 100px; + padding: 6px 15px; } + .LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--wider { + flex: 5 1 200px; } + .LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--wide { + flex: 4 1 150px; } + .LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--narrow { + flex: 2 0 50px; } + .LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--narrower { + flex: 1 0 25px; } + .LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field input { + width: 100%; } + +@media (max-width: 650px) { + .LP-Form .LP-Form__Fieldset .LP-Form__Composition--breakable { + display: flex; + flex-direction: column; + justify-content: space-between; } } + +@media (max-width: 450px) { + .LP-Form .LP-Form__Fieldset .LP-Form__Composition { + display: flex; + flex-direction: column; + justify-content: space-between; } + .LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field { + flex: 3 1 100px; + padding: 12px 15px; } } + .LP-MainContainer { margin: 0 auto; max-width: 1280px; } diff --git a/public/fonts/Crimson/CrimsonText-Bold.ttf b/public/fonts/Crimson/CrimsonText-Bold.ttf new file mode 100644 index 0000000..2a4951e Binary files /dev/null and b/public/fonts/Crimson/CrimsonText-Bold.ttf differ diff --git a/public/fonts/Crimson/CrimsonText-BoldItalic.ttf b/public/fonts/Crimson/CrimsonText-BoldItalic.ttf new file mode 100644 index 0000000..241ad8e Binary files /dev/null and b/public/fonts/Crimson/CrimsonText-BoldItalic.ttf differ diff --git a/public/fonts/Crimson/CrimsonText-Italic.ttf b/public/fonts/Crimson/CrimsonText-Italic.ttf new file mode 100644 index 0000000..45e9168 Binary files /dev/null and b/public/fonts/Crimson/CrimsonText-Italic.ttf differ diff --git a/public/fonts/Crimson/CrimsonText-Regular.ttf b/public/fonts/Crimson/CrimsonText-Regular.ttf new file mode 100644 index 0000000..a173714 Binary files /dev/null and b/public/fonts/Crimson/CrimsonText-Regular.ttf differ diff --git a/public/fonts/Crimson/CrimsonText-SemiBold.ttf b/public/fonts/Crimson/CrimsonText-SemiBold.ttf new file mode 100644 index 0000000..ea3bb66 Binary files /dev/null and b/public/fonts/Crimson/CrimsonText-SemiBold.ttf differ diff --git a/public/fonts/Crimson/CrimsonText-SemiBoldItalic.ttf b/public/fonts/Crimson/CrimsonText-SemiBoldItalic.ttf new file mode 100644 index 0000000..8c18b09 Binary files /dev/null and b/public/fonts/Crimson/CrimsonText-SemiBoldItalic.ttf differ diff --git a/public/fonts/Montserrat/Montserrat-Bold.otf b/public/fonts/Montserrat/Montserrat-Bold.otf new file mode 100644 index 0000000..cdfb83d Binary files /dev/null and b/public/fonts/Montserrat/Montserrat-Bold.otf differ diff --git a/public/fonts/Montserrat/Montserrat-Italic.otf b/public/fonts/Montserrat/Montserrat-Italic.otf new file mode 100644 index 0000000..450689e Binary files /dev/null and b/public/fonts/Montserrat/Montserrat-Italic.otf differ diff --git a/public/fonts/Montserrat/Montserrat-Regular.otf b/public/fonts/Montserrat/Montserrat-Regular.otf new file mode 100644 index 0000000..c1d1ee3 Binary files /dev/null and b/public/fonts/Montserrat/Montserrat-Regular.otf differ diff --git a/public/fonts/OFL.txt b/public/fonts/OFL.txt new file mode 100644 index 0000000..bb385d2 --- /dev/null +++ b/public/fonts/OFL.txt @@ -0,0 +1,94 @@ +Copyright (c) 2010, Sebastian Kosch (sebastian@aldusleaf.org), +with Reserved Font Name "Crimson" and "Crimson Text". + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/public/images/ice-vertical-panorama.jpg b/public/images/ice-vertical-panorama.jpg new file mode 100644 index 0000000..a7b6645 Binary files /dev/null and b/public/images/ice-vertical-panorama.jpg differ