| 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 --card-padding-side: 24px; | 8 --card-padding-side: 24px; |
| 9 --first-card-padding-top: 40px; | 9 --first-card-padding-top: 40px; |
| 10 --side-bar-width: 256px; | 10 --side-bar-width: 256px; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 color: #b4b4b4; | 32 color: #b4b4b4; |
| 33 display: flex; | 33 display: flex; |
| 34 flex: 1; | 34 flex: 1; |
| 35 font-size: 14px; | 35 font-size: 14px; |
| 36 font-weight: 500; | 36 font-weight: 500; |
| 37 justify-content: center; | 37 justify-content: center; |
| 38 } | 38 } |
| 39 | 39 |
| 40 .website-icon { | 40 .website-icon { |
| 41 -webkit-margin-end: 16px; | 41 -webkit-margin-end: 16px; |
| 42 background-repeat: no-repeat; |
| 43 background-size: 16px; |
| 42 height: 16px; | 44 height: 16px; |
| 43 min-width: 16px; | 45 min-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 |