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