| 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 17 matching lines...) Expand all Loading... |
| 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 background-repeat: no-repeat; | 44 background-repeat: no-repeat; |
| 43 background-size: 16px; | 45 background-size: 16px; |
| 44 height: 16px; | 46 height: 16px; |
| 45 min-width: 16px; | 47 width: 16px; |
| 46 } | 48 } |
| 47 | 49 |
| 48 .website-title { | 50 .website-title { |
| 49 color: #333; | 51 color: #333; |
| 50 overflow: hidden; | 52 overflow: hidden; |
| 51 text-decoration: none; | 53 text-decoration: none; |
| 52 text-overflow: ellipsis; | 54 text-overflow: ellipsis; |
| 53 white-space: nowrap; | 55 white-space: nowrap; |
| 54 } | 56 } |
| 55 | 57 |
| 56 .website-title:hover { | 58 .website-title:hover { |
| 57 text-decoration: underline; | 59 text-decoration: underline; |
| 58 } | 60 } |
| 59 </style> | 61 </style> |
| 60 </template> | 62 </template> |
| 61 </dom-module> | 63 </dom-module> |
| OLD | NEW |