| OLD | NEW |
| 1 <dom-module id="shared-style"> | 1 <dom-module id="shared-style"> |
| 2 <template> | 2 <template> |
| 3 <style> | 3 <style> |
| 4 :root { | 4 :root { |
| 5 --card-border-color: rgba(0, 0, 0, 0.14); | 5 --card-border-color: rgba(0, 0, 0, 0.14); |
| 6 --card-max-width: 960px; | 6 --card-max-width: 960px; |
| 7 --card-min-width: 500px; | 7 --card-min-width: 500px; |
| 8 --first-card-padding-top: 40px; |
| 8 } | 9 } |
| 9 | 10 |
| 10 .card-title { | 11 .card-title { |
| 11 @apply(--layout-center); | 12 @apply(--layout-center); |
| 12 @apply(--layout-horizontal); | 13 @apply(--layout-horizontal); |
| 13 -webkit-padding-start: 20px; | 14 -webkit-padding-start: 20px; |
| 14 background: #fafafa; | 15 background: #fafafa; |
| 15 border-bottom: 1px solid var(--card-border-color); | 16 border-bottom: 1px solid var(--card-border-color); |
| 16 border-radius: 2px 2px 0 0; | 17 border-radius: 2px 2px 0 0; |
| 17 color: #333; | 18 color: #333; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 33 text-overflow: ellipsis; | 34 text-overflow: ellipsis; |
| 34 white-space: nowrap; | 35 white-space: nowrap; |
| 35 } | 36 } |
| 36 | 37 |
| 37 .website-title:hover { | 38 .website-title:hover { |
| 38 text-decoration: underline; | 39 text-decoration: underline; |
| 39 } | 40 } |
| 40 </style> | 41 </style> |
| 41 </template> | 42 </template> |
| 42 </dom-module> | 43 </dom-module> |
| OLD | NEW |