Merge pull request #2692 from bechi/splash-screen
improve splash screen
This commit is contained in:
commit
c5e5a3d824
3 changed files with 42 additions and 10 deletions
|
|
@ -614,6 +614,17 @@ button.outline:focus {
|
|||
background: transparent;
|
||||
}
|
||||
|
||||
.button.outline.tiny,
|
||||
.button.outline.tiny:hover,
|
||||
.button.outline.tiny:focus,
|
||||
button.outline.tiny,
|
||||
button.outline.tiny:hover,
|
||||
button.outline.tiny:focus {
|
||||
border-radius: 3px;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
|
||||
.button.outline.dark-gray,
|
||||
.button.outline.dark-gray:hover,
|
||||
.button.outline.dark-gray:focus,
|
||||
|
|
@ -879,7 +890,7 @@ input.ng-invalid-match, input.ng-invalid-match:focus {
|
|||
background-color: #2C3E50;
|
||||
}
|
||||
.text-italic {font-style: italic;}
|
||||
.text-light {font-weight: 100;}
|
||||
.text-light {font-weight: 200;}
|
||||
.text-bold {font-weight: 700;}
|
||||
.text-gray {color: #8597A7;}
|
||||
.text-black {color: #2C3E50;}
|
||||
|
|
@ -889,6 +900,7 @@ input.ng-invalid-match, input.ng-invalid-match:focus {
|
|||
.text-warning {color: #ED4A43;}
|
||||
.text-alert {color: red;}
|
||||
.text-success {color: #1ABC9C;}
|
||||
.text-spacing {letter-spacing:2px;}
|
||||
|
||||
.panel {
|
||||
background: #FFFFFF;
|
||||
|
|
@ -1095,11 +1107,33 @@ input.ng-invalid-match, input.ng-invalid-match:focus {
|
|||
font-weight: normal;
|
||||
}
|
||||
|
||||
.splash {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: #2C3E50;
|
||||
position: absolute;
|
||||
background-image: -webkit-linear-gradient(#3D5672 0%, #223243 100%);
|
||||
background-image: -o-linear-gradient(#3D5672 0%, #223243 100%);
|
||||
background-image: linear-gradient(#3D5672 0%, #223243 100%);
|
||||
}
|
||||
|
||||
.splash .start-button {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.splash .start-button button.black {
|
||||
background-color: #4B6178;
|
||||
}
|
||||
|
||||
.splash .start-button button.outline.tiny {
|
||||
font-size: 0.58rem;
|
||||
}
|
||||
|
||||
.gif-splash {
|
||||
padding: 2rem 0;
|
||||
}
|
||||
|
||||
.preferences li {
|
||||
cursor: pointer !important;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue