github.com/secoba/wails/v2@v2.6.4/pkg/templates/generate/assets/react/frontend/src/App.css (about)

     1  #app {
     2      height: 100vh;
     3      text-align: center;
     4  }
     5  
     6  #logo {
     7      display: block;
     8      width: 50%;
     9      height: 50%;
    10      margin: auto;
    11      padding: 10% 0 0;
    12      background-position: center;
    13      background-repeat: no-repeat;
    14      background-size: 100% 100%;
    15      background-origin: content-box;
    16  }
    17  
    18  .result {
    19      height: 20px;
    20      line-height: 20px;
    21      margin: 1.5rem auto;
    22  }
    23  
    24  .input-box .btn {
    25      width: 60px;
    26      height: 30px;
    27      line-height: 30px;
    28      border-radius: 3px;
    29      border: none;
    30      margin: 0 0 0 20px;
    31      padding: 0 8px;
    32      cursor: pointer;
    33  }
    34  
    35  .input-box .btn:hover {
    36      background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
    37      color: #333333;
    38  }
    39  
    40  .input-box .input {
    41      border: none;
    42      border-radius: 3px;
    43      outline: none;
    44      height: 30px;
    45      line-height: 30px;
    46      padding: 0 10px;
    47      background-color: rgba(240, 240, 240, 1);
    48      -webkit-font-smoothing: antialiased;
    49  }
    50  
    51  .input-box .input:hover {
    52      border: none;
    53      background-color: rgba(255, 255, 255, 1);
    54  }
    55  
    56  .input-box .input:focus {
    57      border: none;
    58      background-color: rgba(255, 255, 255, 1);
    59  }