| OLD | NEW |
| (Empty) | |
| 1 <dom-module id="shared-style"> |
| 2 <template> |
| 3 <style> |
| 4 :root { |
| 5 --card-border-color: rgba(0, 0, 0, 0.14); |
| 6 --card-max-width: 960px; |
| 7 --card-min-width: 500px; |
| 8 } |
| 9 |
| 10 .card-title { |
| 11 @apply(--layout-center); |
| 12 @apply(--layout-horizontal); |
| 13 -webkit-padding-start: 20px; |
| 14 background: #fafafa; |
| 15 border-bottom: 1px solid var(--card-border-color); |
| 16 border-radius: 2px 2px 0 0; |
| 17 color: #333; |
| 18 font-size: 14px; |
| 19 font-weight: 500; |
| 20 height: 48px; |
| 21 } |
| 22 |
| 23 .website-icon { |
| 24 -webkit-margin-end: 16px; |
| 25 height: 16px; |
| 26 min-width: 16px; |
| 27 } |
| 28 |
| 29 .website-title { |
| 30 color: #333; |
| 31 overflow: hidden; |
| 32 text-decoration: none; |
| 33 text-overflow: ellipsis; |
| 34 white-space: nowrap; |
| 35 } |
| 36 |
| 37 .website-title:hover { |
| 38 text-decoration: underline; |
| 39 } |
| 40 </style> |
| 41 </template> |
| 42 </dom-module> |
| OLD | NEW |