Communization
parent
0d0a6b3a39
commit
1b7e5b69fc
|
@ -1,6 +1,7 @@
|
||||||
@import '~bulma/sass/utilities/initial-variables'
|
@import '~bulma/sass/utilities/initial-variables'
|
||||||
@import '~bulma/sass/utilities/functions'
|
@import '~bulma/sass/utilities/functions'
|
||||||
|
|
||||||
|
// v1
|
||||||
$pink: #f8a5c2
|
$pink: #f8a5c2
|
||||||
$pink-invert: findColorInvert($pink)
|
$pink-invert: findColorInvert($pink)
|
||||||
$purple: #786fa6
|
$purple: #786fa6
|
||||||
|
@ -10,14 +11,28 @@ $blue-invert: findColorInvert($blue)
|
||||||
$charcoal: #3a435e
|
$charcoal: #3a435e
|
||||||
$charcoal-invert: findColorInvert($charcoal)
|
$charcoal-invert: findColorInvert($charcoal)
|
||||||
|
|
||||||
$primary: $pink
|
// v(odka)2
|
||||||
$primary-invert: $pink-invert
|
$soviet: #BD271A
|
||||||
$info: $blue
|
$soviet-invert: findColorInvert($soviet)
|
||||||
$info-invert: $blue-invert
|
$yellow: #FAD749
|
||||||
$danger: $purple
|
$yellow-invert: findColorInvert($yellow)
|
||||||
$danger-invert: $purple-invert
|
$gray: #C0BCB5
|
||||||
$warning: $charcoal
|
$gray-invert: findColorInvert($gray)
|
||||||
$warning-invert: $charcoal-invert
|
$green: #4A6C6F
|
||||||
|
$green-invert: findColorInvert($green)
|
||||||
|
$violet: #846075
|
||||||
|
$violet-invert: findColorInvert($violet)
|
||||||
|
|
||||||
|
$primary: $soviet
|
||||||
|
$primary-invert: $soviet-invert
|
||||||
|
$info: $green
|
||||||
|
$info-invert: $green-invert
|
||||||
|
$danger: $violet
|
||||||
|
$danger-invert: $violet-invert
|
||||||
|
$warning: $yellow
|
||||||
|
$warning-invert: $yellow-invert
|
||||||
|
$link: $danger
|
||||||
|
$link-invert: $danger-invert
|
||||||
|
|
||||||
@import '~bulma/bulma'
|
@import '~bulma/bulma'
|
||||||
|
|
||||||
|
|
|
@ -2,11 +2,11 @@
|
||||||
section.hero.is-primary.is-bold.is-medium(v-once)
|
section.hero.is-primary.is-bold.is-medium(v-once)
|
||||||
.hero-body
|
.hero-body
|
||||||
.container
|
.container
|
||||||
h1.title matthew ess
|
h1.title.has-text-warning matthew ess
|
||||||
h2.subtitle software developer, social justice warrior, wannabe artist
|
h2.subtitle.has-text-warning software developer, social justice warrior, wannabe artist
|
||||||
.hero-foot
|
.hero-foot
|
||||||
.tabs.is-boxed.is-fullwidth.is-three-quarters
|
.tabs.is-boxed.is-fullwidth.is-three-quarters
|
||||||
ul.has-text-weight-semibold
|
ul.has-text-weight-semibold.has-text-warning
|
||||||
li
|
li
|
||||||
nuxt-link(to='/') home
|
nuxt-link(to='/') home
|
||||||
li
|
li
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
<template lang="pug">
|
|
||||||
.post.has-text-centered-mobile
|
|
||||||
h1.title {{ $route.params.slug }}
|
|
||||||
hr
|
|
||||||
</template>
|
|
|
@ -1,5 +0,0 @@
|
||||||
<template lang="pug">
|
|
||||||
#blog.has-text-centered-mobile
|
|
||||||
h1.title the irregularly dumped contents of my head
|
|
||||||
h2.subtitle coming soon
|
|
||||||
</template>
|
|
Loading…
Reference in New Issue