3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-10 20:35:02 +00:00

Dashboard styling; don't allow login if you have no guild perms; allow logging out

This commit is contained in:
Dragory 2019-07-22 00:11:24 +03:00
parent a517ca3906
commit 0f724fc9bd
9 changed files with 132 additions and 35 deletions

View file

@ -7,46 +7,50 @@
color: #fff;
display: flex;
flex-direction: column;
align-items: center;
flex-direction: row;
justify-content: center;
align-items: flex-start;
a {
color: #fff;
}
.wrapper {
display: grid;
grid-template-columns: auto 400px;
grid-template-rows: auto repeat(4, 1fr);
flex: 0 1 750px;
display: flex;
flex-direction: row;
align-items: start;
.logo {
grid-column: 1;
grid-row: 1/-1; // Span all
.logo-column {
flex: 0 0 auto;
}
.info-column {
flex: 1 1 100%;
}
.logo {
width: 300px;
height: 300px;
margin-right: 64px;
}
h1 {
grid-column: 2;
font-size: 80px;
font-weight: 300;
margin-top: 40px
}
.description {
grid-column: 2;
color: #f1f5ff;
}
.actions {
grid-column: 2;
display: flex;
flex-wrap: wrap;
margin-top: 8px;
margin-left: -12px; // Negative button margin
.btn {
margin: 12px;
@ -68,5 +72,12 @@
}
}
}
.error {
margin-top: 8px;
background-color: hsl(224, 52%, 32%);
padding: 12px;
border-radius: 4px;
}
}
}