static get styles()

in web/src/components/controls/index.js [59:120]


  static get styles() {
    return [
      css`
        .playground-controls {
          overflow: hidden;
          width: 100%;
        }

        .playground-controls div {
          float: left;
          text-align: center;
          margin: 5px 0 5px 0;
          text-decoration: none;
        }

        .playground-controls .app-title {
          font-size: 25px;
          padding: 10px;
          font-weight: 600;
        }

        .playground-controls div.right {
          float: right;
          display: flex;
          align-items: center;
          justify-content: center;

          div:not(:last-child) {
            margin-right: 4px;
          }
        }

        .run-button {
          background-color: #04aa6d;
          border: 1px solid #049d65;
          color: white;
          padding: 10px;
          width: 75px;
          text-align: center;
          text-decoration: none;
          display: inline-block;
          font-size: 16px;
          cursor: pointer;
          border-radius: 4px;
        }

        .run-button:hover {
          background-color: #3e8e41;
        }

        #evaluator {
          width: 160px;
          height: 40px;
        }

        #version {
          height: 40px;
        }
      `,
      globalStyles,
    ];
  }