quick start guide

This commit is contained in:
Zsolt Ero
2024-06-23 23:11:00 +02:00
parent 62bf87115e
commit abf4a86cb4
2 changed files with 10 additions and 8 deletions

View File

@@ -21,7 +21,7 @@ import { Content as RestText } from '../content/index/rest.md'
<div class="container"> <div class="container">
<p> <p>
Have a look at the default styles and read more about how to integrate it to your website or Have a look at the default styles and read more about how to integrate it to your website or
app here: app:
</p> </p>
<a class="quick-start-button" href="/quick_start">Quick Start Guide</a> <a class="quick-start-button" href="/quick_start">Quick Start Guide</a>

View File

@@ -104,21 +104,23 @@ hr {
} }
.quick-start-button { .quick-start-button {
/*display: block;*/ display: block;
text-decoration: none; text-decoration: none;
color: white; color: white;
font-weight: bold; font-weight: bold;
letter-spacing: 0.05rem; letter-spacing: 0.1rem;
font-size: 15px; font-size: 20px;
border-radius: 20px; border-radius: 20px;
padding: 6px 16px; padding: 20px 0;
margin-top: 15px; margin: 5em auto;
background: linear-gradient(32deg, #03a9f4, transparent) #f441a5; width: 300px;
text-align: center;
background: linear-gradient(32deg, #fdb900, transparent) #f441a5;
transition: background-color 1s; transition: background-color 1s;
&:hover, &:hover,
&:focus { &:focus {
background-color: #fdb900; background-color: #03a9f4;
} }
} }