Update style

* Add new default style to project

* Add new BaseButton component

* Remove link to stylesheet in index.html

* Add import for default style

* Update styles and structure for project components
This commit is contained in:
2021-08-20 15:28:51 +02:00
parent 9c6fdb46e2
commit b481a3fcea
15 changed files with 2311 additions and 34 deletions

View File

@@ -1,11 +1,12 @@
<template>
<section id="about">
<div class="about">
<div class="container">
<div id="grid">
<div id="grid-text">
<h2 class="name">Kamil Niemczycki</h2>
<div class="tagline">Web Developer</div>
<p>I'm a software engineer specialised in frontend and backend development for complex scalable web apps. I write about software development on my blog. Want to know how I may help your project? Check out my project portfolio and online resume.</p>
<base-btn class-icon="my-class" has-icon>Wyświetl portfolio</base-btn>
</div>
<div id="grid-photo">
<figure id="about-photo">
@@ -14,13 +15,18 @@
</div>
</div>
</div>
</section>
</div>
</template>
<style lang="scss">
section#about {
.btn {
i.my-class:before {
content: 'XD ';
}
}
div.about {
padding: 20px 0;
background-color: #fafafa !important;
background-color: var(--gray-color) !important;
h2.name {
font-size: 2.1em;
margin-bottom: 5px;
@@ -62,11 +68,16 @@ section#about {
}
</style>
<script>
import BaseButton from '../BaseButton'
export default {
data () {
return {
publicPath: process.env.BASE_URL
}
},
components: {
'base-btn': BaseButton
}
}
</script>

View File

@@ -1,10 +1,10 @@
<template>
<section id="experiences">
<div id="experiences">
<div class="container">
<h2>Moje doświadczenie</h2>
<p>I have more than 10 years' experience building software for clients all over the world. Below is a quick overview of my main technical skill sets and technologies I use. Want to find out more about my experience? Check out my online resume and project portfolio.</p>
</div>
</section>
</div>
</template>
<script>
@@ -14,7 +14,7 @@ export default {
</script>
<style lang="scss">
section#experiences {
div#experiences {
padding: 20px 0;
}
</style>