226 lines
5.0 KiB
CSS
226 lines
5.0 KiB
CSS
*
|
|
* Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
|
|
* See LICENSE in the project root for license information.
|
|
*/
|
|
|
|
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.ms-welcome__header {
|
|
padding: 20px;
|
|
padding-bottom: 20px;
|
|
padding-top: 20px;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-flex-direction: column;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.ms-welcome__main {
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-flex-direction: column;
|
|
flex-direction: column;
|
|
-webkit-flex-wrap: nowrap;
|
|
flex-wrap: nowrap;
|
|
-webkit-align-items: center;
|
|
align-items: center;
|
|
-webkit-flex: 1 0 0;
|
|
flex: 1 0 0;
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
.ms-welcome__main > h2 {
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.ms-welcome__features {
|
|
list-style-type: none;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.ms-welcome__features.ms-List .ms-ListItem {
|
|
padding-bottom: 20px;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
}
|
|
|
|
.ms-welcome__features.ms-List .ms-ListItem > .ms-Icon {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.ms-welcome__action.ms-Button--hero {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.ms-Button.ms-Button--hero .ms-Button-label {
|
|
color: #0078d7;
|
|
}
|
|
|
|
.ms-Button.ms-Button--hero:hover .ms-Button-label,
|
|
.ms-Button.ms-Button--hero:focus .ms-Button-label{
|
|
color: #005a9e;
|
|
cursor: pointer;
|
|
}
|
|
|
|
b {
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* CSS */
|
|
.run-button {
|
|
appearance: button;
|
|
backface-visibility: hidden;
|
|
background-color: #405cf5;
|
|
border-radius: 6px;
|
|
border-width: 0;
|
|
box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset,rgba(50, 50, 93, .1) 0 2px 5px 0,rgba(0, 0, 0, .07) 0 1px 1px 0;
|
|
box-sizing: border-box;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
font-family: -apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Ubuntu,sans-serif;
|
|
font-size: 100%;
|
|
height: 44px;
|
|
line-height: 1.15;
|
|
margin: 12px 0 0;
|
|
outline: none;
|
|
overflow: hidden;
|
|
padding: 0 25px;
|
|
position: relative;
|
|
text-align: center;
|
|
text-transform: none;
|
|
transform: translateZ(0);
|
|
transition: all .2s,box-shadow .08s ease-in;
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
touch-action: manipulation;
|
|
width: 100%;
|
|
}
|
|
|
|
.run-button {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.run-button:hover {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.run-button {
|
|
box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .2) 0 6px 15px 0, rgba(0, 0, 0, .1) 0 2px 2px 0, rgba(50, 151, 211, .3) 0 0 0 4px;
|
|
}
|
|
|
|
/* Loading CSS for button */
|
|
.loader {
|
|
display: none;
|
|
border: 4px solid rgba(255, 255, 255, 0.3);
|
|
border-top: 4px solid blue;
|
|
border-radius: 50%;
|
|
width: 25px;
|
|
height: 25px;
|
|
animation: spin 1s linear infinite;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.loading {
|
|
background-color: #ccc;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* CSS */
|
|
.result-button {
|
|
appearance: button;
|
|
backface-visibility: hidden;
|
|
background-color: #47bf67;
|
|
border-radius: 6px;
|
|
border-width: 0;
|
|
box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset,rgba(50, 50, 93, .1) 0 2px 5px 0,rgba(0, 0, 0, .07) 0 1px 1px 0;
|
|
box-sizing: border-box;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
font-family: -apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Ubuntu,sans-serif;
|
|
font-size: 100%;
|
|
height: 44px;
|
|
line-height: 1.15;
|
|
margin: 12px 0 0;
|
|
outline: none;
|
|
overflow: hidden;
|
|
padding: 0 25px;
|
|
position: relative;
|
|
text-align: center;
|
|
text-transform: none;
|
|
transform: translateZ(0);
|
|
transition: all .2s,box-shadow .08s ease-in;
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
touch-action: manipulation;
|
|
width: 100%;
|
|
}
|
|
|
|
.result-button {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.result-button:hover {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.result-button {
|
|
box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .2) 0 6px 15px 0, rgba(0, 0, 0, .1) 0 2px 2px 0, rgba(50, 151, 211, .3) 0 0 0 4px;
|
|
}
|
|
|
|
/* CSS */
|
|
.no-result-button {
|
|
appearance: button;
|
|
backface-visibility: hidden;
|
|
background-color: #bf4747;
|
|
border-radius: 6px;
|
|
border-width: 0;
|
|
box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset,rgba(50, 50, 93, .1) 0 2px 5px 0,rgba(0, 0, 0, .07) 0 1px 1px 0;
|
|
box-sizing: border-box;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
font-family: -apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Ubuntu,sans-serif;
|
|
font-size: 100%;
|
|
height: 44px;
|
|
line-height: 1.15;
|
|
margin: 12px 0 0;
|
|
outline: none;
|
|
overflow: hidden;
|
|
padding: 0 25px;
|
|
position: relative;
|
|
text-align: center;
|
|
text-transform: none;
|
|
transform: translateZ(0);
|
|
transition: all .2s,box-shadow .08s ease-in;
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
touch-action: manipulation;
|
|
width: 100%;
|
|
}
|
|
|
|
.no-result-button {
|
|
cursor: pointer;
|
|
}
|
|
|