From 9c6fdb46e2ab96bb6f93d3a912d76e43213b2125 Mon Sep 17 00:00:00 2001 From: Kamil Niemczycki Date: Tue, 17 Aug 2021 06:43:35 +0200 Subject: [PATCH] Update styles --- public/assets/css/default.css | 10 ++- public/index.html | 4 +- src/App.vue | 33 +++++++-- src/components/Navigation.vue | 78 -------------------- src/components/SiteHeader.vue | 66 +++++++++++++++++ src/components/sections/About.vue | 95 +++++++++++++------------ src/components/sections/Experiences.vue | 20 ++++++ src/main.js | 4 +- src/views/About.vue | 23 ++++-- src/views/Contact.vue | 2 +- src/views/Home.vue | 7 +- 11 files changed, 197 insertions(+), 145 deletions(-) delete mode 100644 src/components/Navigation.vue create mode 100644 src/components/SiteHeader.vue create mode 100644 src/components/sections/Experiences.vue diff --git a/public/assets/css/default.css b/public/assets/css/default.css index 5576f0c..a1e7802 100644 --- a/public/assets/css/default.css +++ b/public/assets/css/default.css @@ -1 +1,9 @@ -*{box-sizing:border-box;margin:0;padding:0;} +:root { + --font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; +} + +* { + box-sizing: border-box; + margin: 0; + padding: 0; +} diff --git a/public/index.html b/public/index.html index 1442dc8..07f2866 100644 --- a/public/index.html +++ b/public/index.html @@ -1,5 +1,5 @@ - - + + diff --git a/src/App.vue b/src/App.vue index 93dec8d..194fc21 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,22 +1,45 @@ + diff --git a/src/components/Navigation.vue b/src/components/Navigation.vue deleted file mode 100644 index e63539e..0000000 --- a/src/components/Navigation.vue +++ /dev/null @@ -1,78 +0,0 @@ - - - - diff --git a/src/components/SiteHeader.vue b/src/components/SiteHeader.vue new file mode 100644 index 0000000..ae8d790 --- /dev/null +++ b/src/components/SiteHeader.vue @@ -0,0 +1,66 @@ + + + + + diff --git a/src/components/sections/About.vue b/src/components/sections/About.vue index 416cb87..66defe7 100644 --- a/src/components/sections/About.vue +++ b/src/components/sections/About.vue @@ -1,62 +1,63 @@ + diff --git a/src/components/sections/Experiences.vue b/src/components/sections/Experiences.vue new file mode 100644 index 0000000..c818f62 --- /dev/null +++ b/src/components/sections/Experiences.vue @@ -0,0 +1,20 @@ + + + + + diff --git a/src/main.js b/src/main.js index ff81a35..f7f1037 100644 --- a/src/main.js +++ b/src/main.js @@ -1,8 +1,8 @@ import Vue from 'vue' import App from './App.vue' import router from './router' -import 'bootstrap' -import 'bootstrap/scss/bootstrap.scss' +/* import 'bootstrap' */ +/* import 'bootstrap/scss/bootstrap.scss' */ Vue.config.productionTip = false diff --git a/src/views/About.vue b/src/views/About.vue index 3a66ce5..b582948 100644 --- a/src/views/About.vue +++ b/src/views/About.vue @@ -1,9 +1,18 @@ + + diff --git a/src/views/Contact.vue b/src/views/Contact.vue index 90a8af9..f7eb057 100644 --- a/src/views/Contact.vue +++ b/src/views/Contact.vue @@ -11,6 +11,6 @@ export default { } - diff --git a/src/views/Home.vue b/src/views/Home.vue index 9442052..5af318e 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -1,16 +1,19 @@