Communization
parent
0d0a6b3a39
commit
1b7e5b69fc
|
@ -1,6 +1,7 @@
|
|||
@import '~bulma/sass/utilities/initial-variables'
|
||||
@import '~bulma/sass/utilities/functions'
|
||||
|
||||
// v1
|
||||
$pink: #f8a5c2
|
||||
$pink-invert: findColorInvert($pink)
|
||||
$purple: #786fa6
|
||||
|
@ -10,14 +11,28 @@ $blue-invert: findColorInvert($blue)
|
|||
$charcoal: #3a435e
|
||||
$charcoal-invert: findColorInvert($charcoal)
|
||||
|
||||
$primary: $pink
|
||||
$primary-invert: $pink-invert
|
||||
$info: $blue
|
||||
$info-invert: $blue-invert
|
||||
$danger: $purple
|
||||
$danger-invert: $purple-invert
|
||||
$warning: $charcoal
|
||||
$warning-invert: $charcoal-invert
|
||||
// v(odka)2
|
||||
$soviet: #BD271A
|
||||
$soviet-invert: findColorInvert($soviet)
|
||||
$yellow: #FAD749
|
||||
$yellow-invert: findColorInvert($yellow)
|
||||
$gray: #C0BCB5
|
||||
$gray-invert: findColorInvert($gray)
|
||||
$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'
|
||||
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
section.hero.is-primary.is-bold.is-medium(v-once)
|
||||
.hero-body
|
||||
.container
|
||||
h1.title matthew ess
|
||||
h2.subtitle software developer, social justice warrior, wannabe artist
|
||||
h1.title.has-text-warning matthew ess
|
||||
h2.subtitle.has-text-warning software developer, social justice warrior, wannabe artist
|
||||
.hero-foot
|
||||
.tabs.is-boxed.is-fullwidth.is-three-quarters
|
||||
ul.has-text-weight-semibold
|
||||
ul.has-text-weight-semibold.has-text-warning
|
||||
li
|
||||
nuxt-link(to='/') home
|
||||
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