Merge pull request #286 from teaxyz/white-paper-quick-fix

Commented out the dropdown, vertically centered the content, linked main button to Whitepaper Download
This commit is contained in:
Thomas Smith 2023-03-01 13:35:05 -05:00 committed by GitHub
commit 6871a94320
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,33 +1,45 @@
{{ define "main" }} {{ define "main" }}
<!-- Hero Section --> <!-- Hero Section -->
<section class="hero one-box"> <section class="hero">
<div class="container"> <div class="container">
<div class="row gx-5"> <div class="row gx-5">
<div class="col-xl-2 col-lg-2 col-md-0 col-sm-0 col-0"></div> <div class="col">
<div class="hero-col col-xl-8 col-lg-8 col-md-0 col-sm-0 col-0 my-auto"> <div class="content-container flex" style="height:100vh;">
<h1 class="display-1 hero-text text-center" style="z-index:3; position: relative;"><span class="inner-glow ">WHITE PAPER</h1> <div class="wp-content">
<p class="lead hero-lead mb-5 text-center">Take a look under the hood (bonnet) and see how we're planning on leveraging blockchain technology to fix open-source. We welcome commentary and feedback via any of our community channels.</p> <div class="wp-content-inner w-75" style="margin-left:auto; margin-right:auto;">
<div class="row desktop-ctas"> <h1 class="display-1 hero-text text-center" style="z-index:3; position: relative;"><span class="inner-glow ">WHITE PAPER</h1>
<div class="col-xl-6 col-lg-6 col-md-12 col-sm-12 col-12 mb-3"> <p class="lead hero-lead mb-5 text-center">Take a look under the hood (bonnet) and see how we're planning on leveraging blockchain technology to fix open-source. We welcome commentary and feedback via any of our community channels.</p>
<a href="https://tea.xyz/tea.white-paper.pdf"> <div class="row desktop-ctas">
<button class="hbtn hb-fill-right" style="width:100% !important;"><i class="icon-tea-logo-iconasset-1"></i>INSTALL TEA (<span class="release" style="text-transform:lowercase;"></span>)</button> <div class="col-xl-6 col-lg-6 col-md-12 col-sm-12 col-12 mb-3">
</a> <a href="https://tea.xyz/tea.white-paper.pdf">
<button class="hbtn hb-fill-right" style="width:100% !important; text-transform:uppercase;">Download White Paper</button>
</a>
</div>
<div class="col-xl-6 col-lg-6 col-md-12 col-sm-12 col-12">
<a href="https://github.com/teaxyz/white-paper">
<button class="hbtn-light hb-light-fill-right" style="width:100% !important;">CONTRIBUTE ON GITHUB</button>
</a>
</div>
</div> </div>
<div class="col-xl-6 col-lg-6 col-md-12 col-sm-12 col-12">
<a href="https://github.com/teaxyz/white-paper">
<button class="hbtn-light hb-light-fill-right" style="width:100% !important;"><i class="icon-github" style="position:relative;top:2px;"></i>CONTRIBUTE</button>
</a>
</div> </div>
</div> </div>
</div>
</div> </div>
<div class="col-xl-2 col-lg-2 col-md-0 col-sm-0 col-0"></div>
</div> </div>
</div> </div>
</section> </section>
<style> <style>
@media only screen and (max-width: 576px) {
.wp-content-inner{
width:100% !important;
}
}
.split-btn{ .split-btn{
display: inline-block; display: inline-block;
width: 50%; width: 50%;
@ -36,7 +48,7 @@
.split-right{ .split-right{
border-left: 0px !important; border-left: 0px !important;
} }
/*
.dropdown-toggle{ .dropdown-toggle{
height: 50px; height: 50px;
width: auto; width: auto;
@ -45,10 +57,11 @@
font-family: "inter", sans-serif; font-family: "inter", sans-serif;
} }
*/
</style> </style>
<!--
<section class="one-box"> <section class="one-box">
<div class="container"> <div class="container">
<div class="row"> <div class="row">
@ -141,4 +154,6 @@
</div> </div>
</section> </section>
-->
{{ end }} {{ end }}