New build
parent
fa39daa8d3
commit
5f48c3fbed
26
src/App.vue
26
src/App.vue
|
@ -3,7 +3,7 @@
|
||||||
Hero(@setActive='tab => active = tab')
|
Hero(@setActive='tab => active = tab')
|
||||||
.container
|
.container
|
||||||
component(:is='active')
|
component(:is='active')
|
||||||
footer.footer.white
|
footer.footer.blue
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -32,22 +32,26 @@ export default {
|
||||||
@import '~bulma/sass/utilities/initial-variables'
|
@import '~bulma/sass/utilities/initial-variables'
|
||||||
@import '~bulma/sass/utilities/functions'
|
@import '~bulma/sass/utilities/functions'
|
||||||
|
|
||||||
$pink: #ffa69e
|
$pink: #f8a5c2
|
||||||
$pink-invert: findColorInvert($pink)
|
$pink-invert: findColorInvert($pink)
|
||||||
$mint: #a5ffd6
|
$purple: #786fa6
|
||||||
$mint-invert: findColorInvert($mint)
|
$purple-invert: findColorInvert($purple)
|
||||||
$red: #ff686b
|
$blue: #546de5
|
||||||
$red-invert: findColorInvert($red)
|
$blue-invert: findColorInvert($blue)
|
||||||
|
$charcoal: #3a435e
|
||||||
|
$charcoal-invert: findColorInvert($charcoal)
|
||||||
|
|
||||||
$primary: $pink
|
$primary: $pink
|
||||||
$primary-invert: $pink-invert
|
$primary-invert: $pink-invert
|
||||||
$info: $mint
|
$info: $blue
|
||||||
$info-invert: $mint-invert
|
$info-invert: $blue-invert
|
||||||
$danger: $red
|
$danger: $purple
|
||||||
$danger-invert: $red-invert
|
$danger-invert: $purple-invert
|
||||||
|
$warning: $charcoal
|
||||||
|
$warning-invert: $charcoal-invert
|
||||||
|
|
||||||
@import '~bulma/bulma'
|
@import '~bulma/bulma'
|
||||||
|
|
||||||
.white
|
.blue
|
||||||
background: white
|
background: white
|
||||||
</style>
|
</style>
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 6.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.4 MiB |
|
@ -1,32 +1,37 @@
|
||||||
<template lang="pug">
|
<template lang="pug">
|
||||||
#home
|
#home
|
||||||
.tile.is-ancestor
|
.tile.is-ancestor
|
||||||
.tile.is-vertical.is-3
|
.tile.is-vertical.is-4
|
||||||
.tile.is-9
|
.tile.is-9
|
||||||
.notification.is-primary
|
.notification.is-info
|
||||||
h1.title.is-4 me
|
h1.title.is-4 me
|
||||||
p.content.
|
p.content.
|
||||||
i'm a communist, a
|
i'm a communist, a
|
||||||
#[a(href='https://mattandmack.website' target='_blank') spouse-to-be],
|
#[a(href='https://mattandmack.website' target='_blank') spouse-to-be],
|
||||||
a recently graduated student, and a software developer at yelp.
|
a recently graduated student, and a software developer at yelp.
|
||||||
|
.tile.placeholder.notification.is-white
|
||||||
.tile.is-9
|
.tile.is-9
|
||||||
.notification.is-info
|
.notification.is-warning
|
||||||
h1.title.is-4 what's inspiring me now
|
h1.title.is-4 what's inspiring me now
|
||||||
.content
|
.content
|
||||||
p david lynch's twin peaks
|
p david lynch's twin peaks
|
||||||
p the musical stylings of #[a(href='https://mitski.com/' target='_blank') mitski]
|
p the musical stylings of #[a(href='https://mitski.com/' target='_blank') mitski]
|
||||||
p jeff vandermeer's southern reach trilogy
|
p jeff vandermeer's southern reach trilogy
|
||||||
.tile.is-3
|
.tile.is-4
|
||||||
.notification.is-danger
|
.tile.is-9
|
||||||
h1.title.is-4 what i care about
|
.notification.is-danger
|
||||||
p.content.
|
h1.title.is-4 what i care about
|
||||||
as a communist, i'm passionate about anti-imperialism and decolonization.
|
p.content.
|
||||||
i believe that software can be a tool for liberation, and those are the tools
|
as a communist, i'm passionate about anti-imperialism and decolonization.
|
||||||
i want to develop. feel free to get in touch with
|
i believe that software can be a tool for liberation, and those are the tools
|
||||||
me at mess [at] yelp [dot] com if you have similar goals.
|
i want to develop. feel free to get in touch with
|
||||||
p.content.
|
me at mess [at] yelp [dot] com if you have similar goals.
|
||||||
"the philosophers have only interpreted the world, in various ways.
|
p.content.
|
||||||
the point, however, is to change it."
|
"the philosophers have only interpreted the world, in various ways.
|
||||||
|
the point, however, is to change it."
|
||||||
|
.tile.is-4
|
||||||
|
figure.image
|
||||||
|
img(src='@/assets/me.png')
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -34,3 +39,8 @@ export default {
|
||||||
name: 'Home',
|
name: 'Home',
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style lang="sass" scoped>
|
||||||
|
.placeholder
|
||||||
|
height: 1rem
|
||||||
|
</style>
|
||||||
|
|
|
@ -48,7 +48,7 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="sass" scoped>
|
<style lang="sass" scoped>
|
||||||
$pink: #ffa69e
|
$pink: #f8a5c2
|
||||||
|
|
||||||
hr
|
hr
|
||||||
width: 75%
|
width: 75%
|
||||||
|
|
Loading…
Reference in New Issue