mirror of
https://github.com/cupcakearmy/nicco.io.git
synced 2024-12-22 08:06:29 +00:00
about mobile, title fixes & styling
This commit is contained in:
parent
3c6e25af7a
commit
4be28ac4cf
@ -66,20 +66,20 @@ export default {
|
|||||||
onwarn,
|
onwarn,
|
||||||
},
|
},
|
||||||
|
|
||||||
serviceworker: {
|
// serviceworker: {
|
||||||
input: config.serviceworker.input(),
|
// input: config.serviceworker.input(),
|
||||||
output: config.serviceworker.output(),
|
// output: config.serviceworker.output(),
|
||||||
plugins: [
|
// plugins: [
|
||||||
resolve(),
|
// resolve(),
|
||||||
replace({
|
// replace({
|
||||||
'process.browser': true,
|
// 'process.browser': true,
|
||||||
'process.env.NODE_ENV': JSON.stringify(mode),
|
// 'process.env.NODE_ENV': JSON.stringify(mode),
|
||||||
}),
|
// }),
|
||||||
commonjs(),
|
// commonjs(),
|
||||||
!dev && terser(),
|
// !dev && terser(),
|
||||||
],
|
// ],
|
||||||
|
|
||||||
preserveEntrySignatures: false,
|
// preserveEntrySignatures: false,
|
||||||
onwarn,
|
// onwarn,
|
||||||
},
|
// },
|
||||||
}
|
}
|
||||||
|
@ -44,6 +44,6 @@
|
|||||||
<p>{project.body}</p>
|
<p>{project.body}</p>
|
||||||
|
|
||||||
<ion-icon name="link-outline" />
|
<ion-icon name="link-outline" />
|
||||||
<a href={project.link}>{project.link.replace(/https?:\/\//, '')}</a>
|
<a rel="noopener noreferrer" target="_blank" href={project.link}>{project.link.replace(/https?:\/\//, '')}</a>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@ -1,24 +1,31 @@
|
|||||||
<script>
|
<script>
|
||||||
export let letters = []
|
export let letters = []
|
||||||
|
export let even = false
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
span {
|
span {
|
||||||
font-size: 8vw;
|
|
||||||
text-transform: uppercase;
|
|
||||||
user-select: none;
|
|
||||||
width: 1em;
|
width: 1em;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
div {
|
div {
|
||||||
margin-left: -0.5em;
|
font-size: min(8vw, 2.5em);
|
||||||
|
text-transform: uppercase;
|
||||||
|
user-select: none;
|
||||||
|
letter-spacing: 0.35em;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.even {
|
||||||
|
font-size: 8vw;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<div>
|
<div class:even>
|
||||||
{#each letters as letter}
|
{#if even}
|
||||||
<span>{letter}</span>
|
{#each letters as letter}
|
||||||
{/each}
|
<span>{letter}</span>
|
||||||
|
{/each}
|
||||||
|
{:else}{letters}{/if}
|
||||||
</div>
|
</div>
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
height: 30vw;
|
height: 30vw;
|
||||||
left: 35em;
|
left: 35em;
|
||||||
top: 12em;
|
top: 12em;
|
||||||
|
max-width: 25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 55em) {
|
@media (max-width: 55em) {
|
||||||
|
@ -1,18 +1,30 @@
|
|||||||
<script>
|
<script>
|
||||||
import SimplePage from '../components/SimplePage.svelte'
|
import SimplePage from '../components/SimplePage.svelte'
|
||||||
|
|
||||||
|
const links = [
|
||||||
|
{ href: 'mailto:hi@nicco.io', name: 'Say hi@nicco.io', icon: 'chatbubble-outline' },
|
||||||
|
{ href: 'https://github.com/cupcakearmy', name: 'Github', icon: 'logo-github' },
|
||||||
|
{ href: '/privacy', name: 'Privacy Policy', icon: 'finger-print-outline' },
|
||||||
|
]
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
a {
|
ul {
|
||||||
text-decoration: none;
|
list-style: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
li {
|
||||||
text-decoration: underline;
|
transition: transform 200ms ease;
|
||||||
|
padding: 0.75em 0.5em;
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
span {
|
li:hover {
|
||||||
margin-right: 2em;
|
box-shadow: 0px 6px 6px -3px #00000012;
|
||||||
|
transform: translateY(0.25em) translateX(0.15em) scale(1.05);
|
||||||
}
|
}
|
||||||
|
|
||||||
ion-icon {
|
ion-icon {
|
||||||
@ -23,28 +35,16 @@
|
|||||||
<svelte:head>
|
<svelte:head>
|
||||||
<title>Contact</title>
|
<title>Contact</title>
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<SimplePage title="Contact">
|
<SimplePage title="Contact">
|
||||||
<p>
|
<ul>
|
||||||
<span>
|
{#each links as { href, name, icon }}
|
||||||
<a rel="noopener noreferrer" href="mailto:hi@nicco.io">
|
<li>
|
||||||
<ion-icon name="chatbubble-outline" size="large" />
|
<a rel="noopener noreferrer" {href}>
|
||||||
Say hi@nicco.io
|
<ion-icon name={icon} size="large" />
|
||||||
</a>
|
{name}
|
||||||
</span>
|
</a>
|
||||||
|
</li>
|
||||||
<span>
|
{/each}
|
||||||
<a rel="noopener noreferrer" target="_blank" href="https://github.com/cupcakearmy/">
|
</ul>
|
||||||
<ion-icon name="logo-github" size="large" />
|
|
||||||
Github
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<span>
|
|
||||||
<a href="/privacy">
|
|
||||||
<ion-icon name="finger-print-outline" size="large" />
|
|
||||||
Privacy
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</SimplePage>
|
</SimplePage>
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
<style>
|
<style>
|
||||||
p {
|
p {
|
||||||
font-size: 4vw;
|
font-size: 4vw;
|
||||||
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
section {
|
section {
|
||||||
@ -21,6 +22,7 @@
|
|||||||
section.left {
|
section.left {
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
padding-left: 1em;
|
padding-left: 1em;
|
||||||
|
width: initial;
|
||||||
}
|
}
|
||||||
|
|
||||||
section.right {
|
section.right {
|
||||||
@ -53,8 +55,8 @@
|
|||||||
|
|
||||||
<section class="left" style="z-index: 3;">
|
<section class="left" style="z-index: 3;">
|
||||||
<h1>
|
<h1>
|
||||||
<SpacedLetters letters="Niccolò" />
|
<SpacedLetters letters="Niccolò" even />
|
||||||
<SpacedLetters letters="Borgioli" />
|
<SpacedLetters letters="Borgioli" even />
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
<p>Design & Development</p>
|
<p>Design & Development</p>
|
||||||
|
50
src/routes/privacy.svelte
Normal file
50
src/routes/privacy.svelte
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
<script>
|
||||||
|
import SimplePage from '../components/SimplePage.svelte'
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<SimplePage title="Privacy Policy">
|
||||||
|
<h3>TLDR;</h3>
|
||||||
|
<ul>
|
||||||
|
<li>There is no personal data collected, everything is anonymized</li>
|
||||||
|
<li>No data is passed to any third party</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
<!-- <h2>The Legal</h2> -->
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Your privacy is important to us. It is our policy to respect your privacy regarding any information we may collect
|
||||||
|
from you across our website, https://nicco.io, and other sites we own and operate.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
We only ask for personal information when we truly need it to provide a service to you. We collect it by fair and
|
||||||
|
lawful means, with your knowledge and consent. We also let you know why we’re collecting it and how it will be used.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
We only retain collected information for as long as necessary to provide you with your requested service. What data
|
||||||
|
we store, we’ll protect within commercially acceptable means to prevent loss and theft, as well as unauthorised
|
||||||
|
access, disclosure, copying, use or modification.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
We don’t share any personally identifying information publicly or with third-parties, except when required to by
|
||||||
|
law.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Our website may link to external sites that are not operated by us. Please be aware that we have no control over the
|
||||||
|
content and practices of these sites, and cannot accept responsibility or liability for their respective privacy
|
||||||
|
policies.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
You are free to refuse our request for your personal information, with the understanding that we may be unable to
|
||||||
|
provide you with some of your desired services.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Your continued use of our website will be regarded as acceptance of our practices around privacy and personal
|
||||||
|
information. If you have any questions about how we handle user data and personal information, feel free to contact
|
||||||
|
us.
|
||||||
|
</p>
|
||||||
|
<p>This policy is effective as of 1 January 2019.</p>
|
||||||
|
</SimplePage>
|
@ -26,7 +26,7 @@ h5,
|
|||||||
h6 {
|
h6 {
|
||||||
font-family: 'Playfair Display', serif;
|
font-family: 'Playfair Display', serif;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
margin: 0.5em 0;
|
margin: 1em 0 0.5em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
@ -34,6 +34,10 @@ p {
|
|||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
border: 0.1px solid var(--clr-primary);
|
||||||
|
}
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--clr-primary: hsl(219, 90%, 80%);
|
--clr-primary: hsl(219, 90%, 80%);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user