<!--
  -- Copyright 2013 The Chromium Authors. All rights reserved.
  -- Use of this source code is governed by a BSD-style license that can be
  -- found in the LICENSE file.
  -->

<polymer-element name="kb-altkey-set" attributes="offset char">
  <template>
    <style>
      :host {
         background-color: #3b3b3e;
         border-radius: 2px;
         display: -webkit-box;
         text-align: center;
         position: absolute;
      }
    </style>
    <content select="*"></content>
  </template>
  <script>
    Polymer('kb-altkey-set', {
      offset: 0,
    });
  </script>
</polymer-element>