/* 
 * 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;
     background-color:#faf9f8;
 }
 
 ul {
     margin: 0;
     padding: 0;
 }

 .ms-welcome__header {
    padding: 20px;
    padding-bottom: 30px;
    padding-top: 100px;
    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;
}

.blink_header {
    display: flex;
    padding: 20px;
    height: 50px;
}

.header-main {
    flex-grow: 1;
}

.blink-wrapper {
    box-shadow: 0 20px 10px -20px rgba(0,0,0,0.45) inset;
    height: 100%;
    padding: 40px 20px;
}

.blink-actions {
    padding: 20px 0px;
}

.blink-tutorial-main {
    display: block;
}

.blink-tutorial-title{
    display: inline;
}
.blink-tutorial-h1 {
    display: flex;
    font-size: xx-large;
    padding-bottom: 10px;
    padding-top: 20px;
}
.blink-tutorial-h1 > div {
    padding-left: 30px;
    font-size: large;
    font-weight: bold;
    vertical-align: middle;
}
.blink-tutorial-text {
    font-size: medium;
}

#trident-message {
    padding: 20px;
    color: #323130;
    font-family: BlinkMacSystemFont,Roboto,'Helvetica Neue',sans-serif;
    font-size: 14px;
    display: none;
}

#blink-edit-template-form {
    padding: "30px 30px 30px 30px";
}

.icon-wrap {
    /* don't take the whole line */
    display: inline-block;
    /* transition the background change */
    transition: background-color 0.25s;
    /* height of the icon */
    height: 1.5em;
    /* width of the icon */
    width: 1.5em;
    /* space between the icon and the background edge */
    padding: 0.25em;
    /* make it rounded */
    border-radius: 50%;
    text-align: center;
  }
  
  
  /* styles for the icon wrap when hovered */
  
  .icon-wrap:hover {
    /* add a background on hover */
    background-color: rgba(0, 0, 0, 0.15);
    /* pointer cursor on hover */
    cursor: pointer;
  }

  .manual-text-code {
    background-color: rgba(166, 207, 207, 0.658);
    font-family: 'Courier New', Courier, monospace;
  }
  