summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/signin/signin_shared_css.html
blob: aa41be3d512d459b9ce208a65f3eb9878c433880 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!-- Common styles for signin-related tab modal dialogs. -->
<dom-module id="signin-dialog-shared">
  <template>
    <style>
      a {
        color: var(--google-blue-700);
        text-decoration: none;
      }

      body {
        margin: 0;
        padding: 0;
      }

      paper-button {
        font-weight: 500;
        line-height: 16px;
        margin: 0;
        padding: 8px 16px;
      }

      paper-button.primary-action {
        --paper-button-flat-keyboard-focus: {
          background: rgb(58, 117, 215);
          font-weight: 500;
        };
        background: var(--google-blue-500);
        color: white;
      }

      paper-button.secondary-action {
        --paper-button-flat-keyboard-focus: {
          background: rgba(0, 0, 0, .12);
          font-weight: 500;
        };
        color: var(--paper-grey-600);
      }

      paper-radio-button {
        --paper-radio-button-checked-color: var(--google-blue-500);
        --paper-radio-button-ink-size: 40px;
        --paper-radio-button-label-spacing: 16px;
        --paper-radio-button-unchecked-color: var(--paper-grey-600);
      }

      .container {
        background-color: white;
        color: #333;
        width: 448px;
      }

      .top-title-bar {
        align-items: center;
        border-bottom: 1px solid var(--paper-grey-300);
        display: flex;
        font-size: 16px;
        height: 52px;
        padding: 0 24px;
      }

      .action-container {
        display: flex;
        justify-content: flex-end;
        padding: 16px;
      }

<if expr="is_macosx or is_linux">
      .action-container {
        flex-flow: row-reverse;
        justify-content: flex-start;
      }
</if>

    </style>
  </template>
</dom-module>