| 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 [hidden] { | 11 [hidden] { |
| 11 display: none !important; | 12 display: none !important; |
| 12 } | 13 } |
| 13 | 14 |
| 14 .card-title { | 15 .card-title { |
| 15 @apply(--layout-center); | 16 @apply(--layout-center); |
| 16 @apply(--layout-horizontal); | 17 @apply(--layout-horizontal); |
| 17 -webkit-padding-start: 20px; | 18 -webkit-padding-start: 20px; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 47 text-overflow: ellipsis; | 48 text-overflow: ellipsis; |
| 48 white-space: nowrap; | 49 white-space: nowrap; |
| 49 } | 50 } |
| 50 | 51 |
| 51 .website-title:hover { | 52 .website-title:hover { |
| 52 text-decoration: underline; | 53 text-decoration: underline; |
| 53 } | 54 } |
| 54 </style> | 55 </style> |
| 55 </template> | 56 </template> |
| 56 </dom-module> | 57 </dom-module> |
| OLD | NEW |