| 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-first-last-item-padding: 8px; |
| 6 --card-max-width: 960px; | 7 --card-max-width: 960px; |
| 7 --card-min-width: 500px; | 8 --card-min-width: 500px; |
| 9 --card-padding-between: 20px; |
| 8 --card-padding-side: 24px; | 10 --card-padding-side: 24px; |
| 9 --first-card-padding-top: 40px; | 11 --first-card-padding-top: 40px; |
| 10 --side-bar-width: 256px; | 12 --side-bar-width: 256px; |
| 11 } | 13 } |
| 12 | 14 |
| 13 [hidden] { | 15 [hidden] { |
| 14 display: none !important; | 16 display: none !important; |
| 15 } | 17 } |
| 16 | 18 |
| 17 .card-title { | 19 .card-title { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 33 display: flex; | 35 display: flex; |
| 34 flex: 1; | 36 flex: 1; |
| 35 font-size: 14px; | 37 font-size: 14px; |
| 36 font-weight: 500; | 38 font-weight: 500; |
| 37 justify-content: center; | 39 justify-content: center; |
| 38 } | 40 } |
| 39 | 41 |
| 40 .website-icon { | 42 .website-icon { |
| 41 -webkit-margin-end: 16px; | 43 -webkit-margin-end: 16px; |
| 42 height: 16px; | 44 height: 16px; |
| 43 min-width: 16px; | 45 width: 16px; |
| 44 } | 46 } |
| 45 | 47 |
| 46 .website-title { | 48 .website-title { |
| 47 color: #333; | 49 color: #333; |
| 48 overflow: hidden; | 50 overflow: hidden; |
| 49 text-decoration: none; | 51 text-decoration: none; |
| 50 text-overflow: ellipsis; | 52 text-overflow: ellipsis; |
| 51 white-space: nowrap; | 53 white-space: nowrap; |
| 52 } | 54 } |
| 53 | 55 |
| 54 .website-title:hover { | 56 .website-title:hover { |
| 55 text-decoration: underline; | 57 text-decoration: underline; |
| 56 } | 58 } |
| 57 </style> | 59 </style> |
| 58 </template> | 60 </template> |
| 59 </dom-module> | 61 </dom-module> |
| OLD | NEW |