From 753743cb06c1fd0a6d1a25bbdf2dd0207d04d6dc Mon Sep 17 00:00:00 2001 From: Patryk Niedźwiedziński Date: Fri, 3 Jan 2020 18:41:55 +0100 Subject: Add oboz site --- static/assets/oboz.svg | 4 ++++ static/assets/oboz.webp | Bin 0 -> 268906 bytes 2 files changed, 4 insertions(+) create mode 100644 static/assets/oboz.svg create mode 100644 static/assets/oboz.webp (limited to 'static') diff --git a/static/assets/oboz.svg b/static/assets/oboz.svg new file mode 100644 index 0000000..39b4e00 --- /dev/null +++ b/static/assets/oboz.svg @@ -0,0 +1,4 @@ + + + + diff --git a/static/assets/oboz.webp b/static/assets/oboz.webp new file mode 100644 index 0000000..4379a95 Binary files /dev/null and b/static/assets/oboz.webp differ -- cgit 1.4.1 From 32da7948bed6da8fba51eb4220cbf35fe3234f5f Mon Sep 17 00:00:00 2001 From: Patryk Niedźwiedziński Date: Sat, 4 Jan 2020 15:30:53 +0100 Subject: Add jpg support --- components/JoinUs.vue | 9 ++++++++- components/ObozWidget.vue | 9 ++++++++- static/assets/bg.jpg | Bin 0 -> 669154 bytes static/assets/oboz.jpg | Bin 0 -> 606264 bytes 4 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 static/assets/bg.jpg create mode 100644 static/assets/oboz.jpg (limited to 'static') diff --git a/components/JoinUs.vue b/components/JoinUs.vue index a219d16..4359a82 100644 --- a/components/JoinUs.vue +++ b/components/JoinUs.vue @@ -21,12 +21,19 @@ export default { diff --git a/static/assets/2020.svg b/static/assets/2020.svg new file mode 100644 index 0000000..4fd38c3 --- /dev/null +++ b/static/assets/2020.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/assets/fether.svg b/static/assets/fether.svg new file mode 100644 index 0000000..d7b90a1 --- /dev/null +++ b/static/assets/fether.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + -- cgit 1.4.1 From 737883fec5571448b6831919fb4e99e376cba53e Mon Sep 17 00:00:00 2001 From: Patryk Niedźwiedziński Date: Sat, 25 Jan 2020 23:27:41 +0100 Subject: Add Camp story --- components/Posts/EmptyCampStory.vue | 19 ++++++++ components/TheHeader.vue | 18 ++++---- pages/oboz/2020.vue | 90 +++++++++++++++++++++++++++++++++++-- static/_headers | 1 + static/assets/tomahawk.svg | 31 +++++++++++++ 5 files changed, 148 insertions(+), 11 deletions(-) create mode 100644 components/Posts/EmptyCampStory.vue create mode 100644 static/_headers create mode 100644 static/assets/tomahawk.svg (limited to 'static') diff --git a/components/Posts/EmptyCampStory.vue b/components/Posts/EmptyCampStory.vue new file mode 100644 index 0000000..57bea40 --- /dev/null +++ b/components/Posts/EmptyCampStory.vue @@ -0,0 +1,19 @@ + + + diff --git a/components/TheHeader.vue b/components/TheHeader.vue index 4d17616..8724fa7 100644 --- a/components/TheHeader.vue +++ b/components/TheHeader.vue @@ -26,33 +26,33 @@ import NavLink from './NavLink' export default { name: 'TheHeader', components: { - NavLink + NavLink, }, props: { routes: { type: Array, - required: true + required: true, }, title: { type: String, - required: true + required: true, }, logo: { type: String, required: false, - default: () => '' - } + default: () => '', + }, }, data: function() { return { - showMenu: false + showMenu: false, } }, methods: { toggleMenu() { this.showMenu = !this.showMenu - } - } + }, + }, } @@ -83,6 +83,7 @@ export default { } .title { + z-index: 99; font-size: 30px; flex-shrink: 0; @@ -100,6 +101,7 @@ export default { } .links { + z-index: 98; display: flex; flex-direction: row; padding: 0; diff --git a/pages/oboz/2020.vue b/pages/oboz/2020.vue index e80259d..68a00d9 100644 --- a/pages/oboz/2020.vue +++ b/pages/oboz/2020.vue @@ -11,24 +11,76 @@

7 PDH Watra

- + + -

Tutaj niedługo znajdziesz relacje z obozu

- +
+

+ To się działo na obozie +

+ +
+ @@ -105,4 +157,36 @@ h1 { content: ''; } } + +.story::before, +.story::after { + content: ''; + background-image: url('/assets/tomahawk.svg'); + background-size: contain; + width: 70px; + height: 70px; + display: block; + top: 30px; + margin: auto; + margin-bottom: 20px; +} + +.story::after { + display: none; + -moz-transform: scaleX(-1); + -o-transform: scaleX(-1); + -webkit-transform: scaleX(-1); + transform: scaleX(-1); + filter: FlipX; + -ms-filter: 'FlipX'; +} + +@media (min-width: 510px) { + .story::before, + .story::after { + display: inline-block; + position: relative; + margin: 0 10px; + } +} diff --git a/static/_headers b/static/_headers new file mode 100644 index 0000000..cb762ef --- /dev/null +++ b/static/_headers @@ -0,0 +1 @@ +Access-Control-Allow-Origin: * diff --git a/static/assets/tomahawk.svg b/static/assets/tomahawk.svg new file mode 100644 index 0000000..7e49c2c --- /dev/null +++ b/static/assets/tomahawk.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit 1.4.1 From fd9ef5907a5ce2830b4d90bb5a815ae0cf17887c Mon Sep 17 00:00:00 2001 From: Patryk Niedźwiedziński Date: Mon, 27 Jan 2020 17:35:07 +0100 Subject: Fix name --- pages/oboz/2020.vue | 2 +- static/assets/feather.svg | 18 ++++++++++++++++++ static/assets/fether.svg | 18 ------------------ 3 files changed, 19 insertions(+), 19 deletions(-) create mode 100644 static/assets/feather.svg delete mode 100644 static/assets/fether.svg (limited to 'static') diff --git a/pages/oboz/2020.vue b/pages/oboz/2020.vue index caf1db6..119220d 100644 --- a/pages/oboz/2020.vue +++ b/pages/oboz/2020.vue @@ -143,7 +143,7 @@ h1 { .oboz::after { width: 100px; height: 200px; - background: url('/assets/fether.svg'); + background: url('/assets/feather.svg'); background-repeat: no-repeat; background-size: contain; position: absolute; diff --git a/static/assets/feather.svg b/static/assets/feather.svg new file mode 100644 index 0000000..d7b90a1 --- /dev/null +++ b/static/assets/feather.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/static/assets/fether.svg b/static/assets/fether.svg deleted file mode 100644 index d7b90a1..0000000 --- a/static/assets/fether.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - -- cgit 1.4.1 From b4b7dddcfa40244d199d70cf44e8923edee85efa Mon Sep 17 00:00:00 2001 From: Patryk Niedźwiedziński Date: Tue, 28 Jan 2020 19:10:28 +0100 Subject: Create _redirects --- static/_redirects | 1 + 1 file changed, 1 insertion(+) create mode 100644 static/_redirects (limited to 'static') diff --git a/static/_redirects b/static/_redirects new file mode 100644 index 0000000..20cb17f --- /dev/null +++ b/static/_redirects @@ -0,0 +1 @@ +/api https://api-puszcza.netlify.com/api -- cgit 1.4.1 From 8aa75ffbe661684fffcfe8f20a4da066c34c9813 Mon Sep 17 00:00:00 2001 From: Patryk Niedźwiedziński Date: Tue, 28 Jan 2020 19:21:16 +0100 Subject: Delete _redirects --- static/_redirects | 1 - 1 file changed, 1 deletion(-) delete mode 100644 static/_redirects (limited to 'static') diff --git a/static/_redirects b/static/_redirects deleted file mode 100644 index 20cb17f..0000000 --- a/static/_redirects +++ /dev/null @@ -1 +0,0 @@ -/api https://api-puszcza.netlify.com/api -- cgit 1.4.1