summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/md_extensions/shared_style.html
blob: 7eae76ab6870ffba8a1a9abecf91f5da7f4b0783 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html">

<dom-module id="shared-style">
  <template>
    <style include="cr-shared-style">
      .page-container {
        height: 100%;
        overflow: overlay;
      }

      .page-content {
        @apply --cr-card-elevation;
        background-color: white;
        box-sizing: border-box;
        margin: auto;
        min-height: 100%;
        padding-bottom: 64px;
        width: var(--cr-toolbar-field-width);
      }

      .page-header {
        align-items: center;
        display: flex;
        height: 40px;
        margin-bottom: 12px;
        padding: 8px 12px 0;
      }
    </style>
  </template>
</dom-module>