update home & universe css

This commit is contained in:
2021-04-12 11:05:21 +02:00
parent 3d5fc14b16
commit cf9d31473c
4 changed files with 12 additions and 9 deletions

View File

@@ -6,4 +6,7 @@ button: Tell Me More!
link: /token link: /token
--- ---
Build secure software, applications and open Internet services. Build secure software, applications and open Internet services.
<br>

View File

@@ -1,5 +1,5 @@
<template> <template>
<div class="py-0 mb-5"> <div class="py-0 mb-5 mx-4">
<div class="text-center mx-auto my-4" v-if="id == 'why'"> <div class="text-center mx-auto my-4" v-if="id == 'why'">
<h1 class="text-4xl text-gray-900 font-light sm:text-9xl sm:leading-10"> <h1 class="text-4xl text-gray-900 font-light sm:text-9xl sm:leading-10">
{{ main.title }} <span class="font-extrabold">{{ main.subtitle }}</span> {{ main.title }} <span class="font-extrabold">{{ main.subtitle }}</span>
@@ -51,29 +51,29 @@
target="_blank" target="_blank"
:key="idx" :key="idx"
:href="product.link" :href="product.link"
class="m-auto rounded overflow-hidden transition duration-500" class="m-auto rounded overflow-hidden transition duration-500 bg-gray-100"
> >
<div> <div>
<g-image :src="img(product.image)" /> <g-image :src="img(product.image)" />
<div class="bg-gray-100 font-bold text-xl pt-5"> <div class="font-bold text-xl pt-5 mx-4">
{{ product.title }} {{ product.title }}
</div> </div>
<div <div
v-html="product.content" v-html="product.content"
class="bg-gray-100 py-2 text-gray-600" class="py-2 text-gray-600 mx-4"
></div> ></div>
<div v-if="product.button" class="bg-gray-100 mb-2 py-5 text-center"> <div v-if="product.button" class="mb-2 py-5 text-center">
<a <a
v-if="product.link.includes('http')" v-if="product.link.includes('http')"
target="_blank" target="_blank"
:href="product.link" :href="product.link"
class="bg-transparent text-sm learn-button border-gray-900 text-gray-900 px-12 py-2 mr-5 shadow rounded-full" class="bg-blue-900 text-sm learn-button hover:bg-blue-800 text-gray-100 px-12 py-2 mr-5 shadow rounded-full"
>{{ product.button }}</a >{{ product.button }}</a
> >
<a <a
v-else v-else
:href="product.link" :href="product.link"
class="bg-transparent text-sm learn-button border-gray-900 text-gray-900 px-12 py-2 mr-5 shadow rounded-full" class="bg-blue-900 text-sm learn-button hover:bg-blue-800 text-gray-100 px-12 py-2 mr-5 shadow rounded-full"
>{{ product.button }}</a >{{ product.button }}</a
> >
</div> </div>

View File

@@ -1,5 +1,5 @@
<template> <template>
<section class="py-24 pb-8 px-4 text-center"> <section class="py-10 pb-8 px-4 text-center">
<div class="max-w-2xl mx-auto mb-8"> <div class="max-w-2xl mx-auto mb-8">
<h2 class="text-4xl leading-tight mb-6 font-bold font-heading"> <h2 class="text-4xl leading-tight mb-6 font-bold font-heading">
WORK WITH AWESOME PARTNERS WORK WITH AWESOME PARTNERS

View File

@@ -105,7 +105,7 @@
/> --> /> -->
<g-image <g-image
class="m-auto w-3/4" class="m-auto w-3/4 mt-8"
v-if="$page.markdownPage.solution_image" v-if="$page.markdownPage.solution_image"
:src="$page.markdownPage.solution_image.src" :src="$page.markdownPage.solution_image.src"
/> />