Add HUGE SOURCE CODE button to about page hero
This commit is contained in:
parent
c6bf3c375e
commit
3d0146f3be
1 changed files with 24 additions and 0 deletions
|
|
@ -97,6 +97,29 @@
|
|||
text-align: center;
|
||||
line-height: 1.8;
|
||||
}
|
||||
.source-code-btn {
|
||||
display: inline-block;
|
||||
margin-top: 50px;
|
||||
padding: 24px 60px;
|
||||
font-size: 1.8em;
|
||||
font-weight: 900;
|
||||
letter-spacing: 0.15em;
|
||||
text-transform: uppercase;
|
||||
text-decoration: none;
|
||||
color: #000;
|
||||
background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #ffd93d 100%);
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 8px 30px rgba(255,107,107,0.4), 0 0 60px rgba(255,107,107,0.2);
|
||||
transition: all 0.3s ease;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
.source-code-btn:hover {
|
||||
transform: translateY(-4px) scale(1.02);
|
||||
box-shadow: 0 12px 40px rgba(255,107,107,0.5), 0 0 80px rgba(255,107,107,0.3);
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/* Chapter Sections */
|
||||
.chapter {
|
||||
|
|
@ -488,6 +511,7 @@
|
|||
<p class="hero-tagline">
|
||||
{{ t.about_hero_tagline }}<br><br>{{ t.about_hero_tagline2 }}
|
||||
</p>
|
||||
<a href="https://git.unturf.com/engineering/unturf/pig.py" target="_blank" class="source-code-btn">SOURCE CODE</a>
|
||||
</section>
|
||||
|
||||
<!-- CHAPTER I: GENESIS -->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue