Add links to splash page. Update splash styles to be more mobile friendly.
This commit is contained in:
parent
1b8c9b45bc
commit
a0fa21f0f5
2 changed files with 72 additions and 8 deletions
|
@ -13,6 +13,17 @@
|
||||||
<a class="btn" href="/dashboard">Dashboard</a>
|
<a class="btn" href="/dashboard">Dashboard</a>
|
||||||
<a class="btn" href="/docs">Documentation</a>
|
<a class="btn" href="/docs">Documentation</a>
|
||||||
</div>
|
</div>
|
||||||
|
<ul class="links">
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/Dragory/ZeppelinBot">GitHub</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://discord.com/invite/w8njuNu">Discord</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://www.patreon.com/zeppelinbot">Patreon</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
.splash {
|
.splash {
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: 100vh;
|
min-height: 100vh;
|
||||||
padding: 16px;
|
|
||||||
|
|
||||||
background-color: #7289da;
|
background-color: #7289da;
|
||||||
background-image: linear-gradient(225deg, #7289da 0%, #5d70b4 100%);
|
background-image: linear-gradient(225deg, #7289da 0%, #5d70b4 100%);
|
||||||
|
@ -39,31 +38,34 @@
|
||||||
& .wrapper {
|
& .wrapper {
|
||||||
flex: 0 0 auto;
|
flex: 0 0 auto;
|
||||||
|
|
||||||
width: 750px;
|
width: 800px;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
align-items: flex-start;
|
justify-content: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
& .logo-column {
|
& .logo-column {
|
||||||
flex: 0 0 auto;
|
flex: 0 0 auto;
|
||||||
|
padding: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
& .info-column {
|
& .info-column {
|
||||||
flex: 1 1 100%;
|
flex: 1 1 100%;
|
||||||
|
max-width: 448px;
|
||||||
|
padding: 24px;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
& .logo {
|
& .logo {
|
||||||
width: 300px;
|
width: 300px;
|
||||||
height: 300px;
|
height: 300px;
|
||||||
margin-right: 48px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
& h1 {
|
& h1 {
|
||||||
font-size: 80px;
|
font-size: 80px;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
margin-top: 40px
|
|
||||||
}
|
}
|
||||||
|
|
||||||
& .description {
|
& .description {
|
||||||
|
@ -71,14 +73,16 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
& .actions {
|
& .actions {
|
||||||
display: flex;
|
display: grid;
|
||||||
flex-wrap: wrap;
|
grid-template-columns: 1fr 1fr;
|
||||||
|
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
margin-left: -12px;
|
margin-left: -12px;
|
||||||
|
|
||||||
& .btn {
|
& .btn {
|
||||||
margin: 12px;
|
margin: 12px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
text-align: center;
|
||||||
padding: 8px 24px;
|
padding: 8px 24px;
|
||||||
border: 1px solid #fff;
|
border: 1px solid #fff;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
@ -97,6 +101,51 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
& .links {
|
||||||
|
list-style: none;
|
||||||
|
display: flex;
|
||||||
|
font-size: 14px;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
margin-top: 12px;
|
||||||
|
|
||||||
|
& li {
|
||||||
|
padding: 0 16px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
& li:first-child {
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
& li:last-child {
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
& li:not(:first-child)::before {
|
||||||
|
display: block;
|
||||||
|
content: ' ';
|
||||||
|
width: 4px;
|
||||||
|
height: 4px;
|
||||||
|
border-radius: 50%;
|
||||||
|
background-color: rgb(226, 232, 253);
|
||||||
|
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 0;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
}
|
||||||
|
|
||||||
|
& a {
|
||||||
|
color: rgb(226, 232, 253);
|
||||||
|
text-decoration: none;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
& .error {
|
& .error {
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
background-color: hsl(224, 52%, 32%);
|
background-color: hsl(224, 52%, 32%);
|
||||||
|
@ -105,3 +154,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 1024px) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue