Dashboard work and related

This commit is contained in:
Dragory 2019-06-23 19:18:41 +03:00
parent 7bda2b1763
commit b230a73a6f
44 changed files with 637 additions and 272 deletions

View file

@ -0,0 +1,6 @@
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600&display=swap');
@import "~bulma/sass/base/minireset";
body {
font: normal 16px/1.4 'Open Sans', sans-serif;
}

View file

@ -0,0 +1,5 @@
$family-primary: 'Open Sans', sans-serif;
@import "~bulmaswatch/superhero/_variables";
@import "~bulma/bulma";
@import "~bulmaswatch/superhero/_overrides";

View file

@ -0,0 +1,72 @@
.splash {
width: 100vw;
height: 100vh;
background-color: #7289da;
background-image: linear-gradient(225deg, #7289da 0%, #5d70b4 100%);
color: #fff;
display: flex;
flex-direction: column;
align-items: center;
a {
color: #fff;
}
.wrapper {
display: grid;
grid-template-columns: auto 400px;
grid-template-rows: auto repeat(4, 1fr);
align-items: start;
.logo {
grid-column: 1;
grid-row: 1/-1; // Span all
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;
.btn {
margin: 12px;
text-decoration: none;
padding: 8px 24px;
border: 1px solid #fff;
border-radius: 4px;
transition: all 120ms ease-in-out;
background-color: hsla(0, 0%, 100%, 0.05);
&:not(.disabled):hover {
background-color: hsla(0, 0%, 100%, 0.25);
box-shadow: 0 3px 12px -2px hsla(0, 0%, 0%, 0.2);
}
&.disabled {
cursor: default;
opacity: 0.75;
}
}
}
}
}