diff --git a/assets/css/app.css b/assets/css/app.css index 645b5998..54381dcb 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -19,7 +19,7 @@ img { } a { - @apply text-blue no-underline; + @apply text-blue-600 no-underline; &:hover { @apply underline diff --git a/assets/css/components/blockquote.css b/assets/css/components/blockquote.css index ebd9152a..61c751e7 100644 --- a/assets/css/components/blockquote.css +++ b/assets/css/components/blockquote.css @@ -1,3 +1,3 @@ blockquote { - @apply border-l-4 border-blue pl-4 px-6 py-2 + @apply border-l-4 border-blue-600 pl-4 px-6 py-2 } diff --git a/assets/css/components/button.css b/assets/css/components/button.css index 3ccbabca..33e1b668 100644 --- a/assets/css/components/button.css +++ b/assets/css/components/button.css @@ -1,5 +1,5 @@ .button { - @apply bg-blue border-blue border inline-block text-white no-underline py-2 px-3 rounded text-sm; + @apply bg-blue-600 border-blue-600 border inline-block text-white no-underline py-2 px-3 rounded text-sm; &:focus { @apply py-2 px-3 m-0 @@ -8,6 +8,6 @@ &:active, &:focus, &:hover { - @apply bg-white text-blue + @apply bg-white text-blue-600 } } diff --git a/assets/css/components/markup.css b/assets/css/components/markup.css index d55dce98..4f52baa2 100644 --- a/assets/css/components/markup.css +++ b/assets/css/components/markup.css @@ -22,14 +22,18 @@ } } + ul { + @apply list-disc ml-5 + } + code { - @apply bg-grey-lighter font-mono text-sm + @apply bg-gray-200 font-mono text-sm } p, li { code { - @apply inline-block border border-grey-light font-bold mx-px p-1 leading-none + @apply inline-block border border-gray-300 font-bold mx-px p-1 leading-none } } @@ -44,6 +48,6 @@ } figcaption { - @apply italic text-sm text-grey-darker text-center mb-0 mt-1 + @apply italic text-sm text-gray-800 text-center mb-0 mt-1 } } diff --git a/assets/css/components/note.css b/assets/css/components/note.css index 0d8f1174..7f9909cd 100644 --- a/assets/css/components/note.css +++ b/assets/css/components/note.css @@ -1,5 +1,5 @@ .note { - @apply bg-blue-lighter border-blue border-l-4 mb-4 p-4 rounded; + @apply bg-blue-200 border-blue-600 border-l-4 mb-4 p-4 rounded; > *:not(:first-child) { @apply mt-6 diff --git a/assets/css/components/talks/video.css b/assets/css/components/talks/video.css index ed037900..90757995 100644 --- a/assets/css/components/talks/video.css +++ b/assets/css/components/talks/video.css @@ -1,6 +1,6 @@ .talk-video { iframe, embed { - @apply absolute h-full pin-l pin-t w-full + @apply absolute h-full left-0 top-0 w-full } } diff --git a/assets/js/components/Navbar.vue b/assets/js/components/Navbar.vue index b6462dcc..960bc4ff 100644 --- a/assets/js/components/Navbar.vue +++ b/assets/js/components/Navbar.vue @@ -8,7 +8,7 @@
@@ -20,8 +20,8 @@ > {{ item.title }} diff --git a/package.json b/package.json index 5d6ff9a0..fe9a8917 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "laravel-mix": "^2.1.11", "laravel-mix-purgecss": "^2.1.2", "postcss-nested": "^4.1.2", - "tailwindcss": "https://github.com/tailwindcss/tailwindcss.git#next", + "tailwindcss": "^1.0.0-beta.3", "tailwindcss-skip-link": "^1.0.0", "tailwindcss-visuallyhidden": "^1.0.1", "tailwindcss-vuejs": "^1.0.0", diff --git a/source/_layouts/app.html.twig b/source/_layouts/app.html.twig index b5536db6..c5763bf1 100644 --- a/source/_layouts/app.html.twig +++ b/source/_layouts/app.html.twig @@ -20,7 +20,7 @@ {% endfor %} - +
{% block body %}{% endblock %}
diff --git a/source/_layouts/default.html.twig b/source/_layouts/default.html.twig index f0f97bf2..f85264eb 100644 --- a/source/_layouts/default.html.twig +++ b/source/_layouts/default.html.twig @@ -1,7 +1,7 @@ {% extends 'app' %} {% block body %} -
diff --git a/source/_partials/about/availability.html.twig b/source/_partials/about/availability.html.twig index b65db64d..a8275815 100644 --- a/source/_partials/about/availability.html.twig +++ b/source/_partials/about/availability.html.twig @@ -1,7 +1,7 @@

Availability

-
-
+

Certifications

diff --git a/source/_partials/blog/post-summary.html.twig b/source/_partials/blog/post-summary.html.twig index d1dc9d8d..673031bc 100644 --- a/source/_partials/blog/post-summary.html.twig +++ b/source/_partials/blog/post-summary.html.twig @@ -14,7 +14,7 @@
- + Read more about '{{ post.title }}' → diff --git a/source/_partials/cv/experience.html.twig b/source/_partials/cv/experience.html.twig index 42afd29a..31f3e07d 100644 --- a/source/_partials/cv/experience.html.twig +++ b/source/_partials/cv/experience.html.twig @@ -4,14 +4,14 @@ {% for item in page.experience %}
  • {% if site.companies[item.company].url %} -

    {{ site.companies[item.company].name }}

    +

    {{ site.companies[item.company].name }}

    {% else %}

    {{ site.companies[item.company].name }}

    {% endif %} {% for role in item.roles %}
    -

    {{ role.title }} from {{ role.from }} to {{ role.to ?: 'present' }} ({{ role.location }})

    +

    {{ role.title }} from {{ role.from }} to {{ role.to ?: 'present' }} ({{ role.location }})

    {{ role.description|markdown }}
    diff --git a/source/_partials/layout/footer.html.twig b/source/_partials/layout/footer.html.twig index 0eefa9a7..f6660fec 100644 --- a/source/_partials/layout/footer.html.twig +++ b/source/_partials/layout/footer.html.twig @@ -1,4 +1,4 @@ -