github.com/hyperledger/burrow@v0.34.5-0.20220512172541-77f09336001d/docs/example/basic-app-website/public/css/style.css (about)

     1  /*
     2    Styles from this codepen:
     3    https://codepen.io/official_naveen/pen/rgknI
     4  */
     5  
     6  body {
     7    width: 800px;
     8    margin: 0 auto;
     9    font-family: 'Open Sans', sans-serif;
    10  }
    11  .container {
    12    width: 600px;
    13    margin: 0 auto;
    14  }
    15  fieldset {
    16    display: block;
    17    -webkit-margin-start: 0px;
    18    -webkit-margin-end: 0px;
    19    -webkit-padding-before: 0em;
    20    -webkit-padding-start: 0em;
    21    -webkit-padding-end: 0em;
    22    -webkit-padding-after: 0em;
    23    border: 0px;
    24    border-image-source: initial;
    25    border-image-slice: initial;
    26    border-image-width: initial;
    27    border-image-outset: initial;
    28    border-image-repeat: initial;
    29    min-width: -webkit-min-content;
    30    padding: 30px;
    31  }
    32  .ghost-input, p {
    33    display: block;
    34    font-weight:300;
    35    width: 100%;
    36    font-size: 25px;
    37    border:0px;
    38    outline: none;
    39    width: 100%;
    40    -webkit-box-sizing: border-box;
    41    -moz-box-sizing: border-box;
    42    box-sizing: border-box;
    43    color: #4b545f;
    44    background: #fff;
    45    font-family: Open Sans,Verdana;
    46    padding: 10px 15px;
    47    margin: 30px 0px;
    48    -webkit-transition: all 0.1s ease-in-out;
    49    -moz-transition: all 0.1s ease-in-out;
    50    -ms-transition: all 0.1s ease-in-out;
    51    -o-transition: all 0.1s ease-in-out;
    52    transition: all 0.1s ease-in-out;
    53  }
    54  .ghost-input:focus {
    55    border-bottom:1px solid #ddd;
    56  }
    57  .ghost-button {
    58    background-color: transparent;
    59    border:2px solid #ddd;
    60    padding:10px 30px;
    61    width: 100%;
    62    min-width: 350px;
    63    -webkit-transition: all 0.1s ease-in-out;
    64    -moz-transition: all 0.1s ease-in-out;
    65    -ms-transition: all 0.1s ease-in-out;
    66    -o-transition: all 0.1s ease-in-out;
    67    transition: all 0.1s ease-in-out;
    68  }
    69  .ghost-button:hover {
    70    border:2px solid #515151;
    71  }
    72  p {
    73    color: #E64A19;
    74  }