OLD | NEW |
1 <dom-module id="shared-styles"> | 1 <dom-module id="shared-styles"> |
2 <template> | 2 <template> |
3 <style> | 3 <style> |
4 a { | 4 :root { |
| 5 --main-text-color: var(--paper-grey-800); |
| 6 --page-width: 624px; |
| 7 --title-icon-color: var(--paper-grey-500); |
| 8 } |
| 9 |
| 10 a, |
| 11 a:active, |
| 12 a:hover, |
| 13 a:visited { |
5 color: var(--google-blue-700); | 14 color: var(--google-blue-700); |
| 15 cursor: pointer; |
6 text-decoration: none; | 16 text-decoration: none; |
7 } | 17 } |
| 18 |
| 19 paper-button.action { |
| 20 border-radius: 2px; |
| 21 line-height: 32px; |
| 22 margin: 0; |
| 23 min-width: 52px; |
| 24 padding: 0 16px; |
| 25 } |
| 26 |
| 27 paper-button.action.primary { |
| 28 --paper-button: { |
| 29 background: var(--google-blue-500); |
| 30 color: white; |
| 31 font-weight: 500; |
| 32 }; |
| 33 --paper-button-flat-keyboard-focus: { |
| 34 background: rgb(58, 117, 215); |
| 35 font-weight: 500; |
| 36 }; |
| 37 --paper-button-disabled: { |
| 38 background: rgba(66, 133, 244, .5); |
| 39 color: white; |
| 40 }; |
| 41 } |
| 42 |
| 43 paper-button.action.secondary { |
| 44 --paper-button: { |
| 45 color: var(--paper-grey-600); |
| 46 font-weight: 500; |
| 47 }; |
| 48 --paper-button-flat-keyboard-focus: { |
| 49 background: rgba(0, 0, 0, .12); |
| 50 font-weight: 500; |
| 51 }; |
| 52 } |
| 53 |
| 54 paper-button.action + paper-button.action { |
| 55 -webkit-margin-start: 8px; |
| 56 } |
8 </style> | 57 </style> |
9 </template> | 58 </template> |
10 </dom-module> | 59 </dom-module> |
OLD | NEW |