OLD | NEW |
1 /* Apps */ | 1 /* Apps */ |
2 | 2 |
3 .app, | 3 .app, |
4 .app[new=installed] { | 4 .app[new=installed] { |
5 -webkit-box-sizing: border-box; | 5 -webkit-box-sizing: border-box; |
6 -webkit-perspective: 400; | 6 -webkit-perspective: 400; |
7 border-radius: 10px; | 7 border-radius: 10px; |
8 color: black; | 8 color: black; |
9 display: inline-block; | 9 display: inline-block; |
10 margin: 5px 3px; | 10 margin: 5px 3px; |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 | 74 |
75 60% { | 75 60% { |
76 -webkit-transform: scale(1.2, 1.2); | 76 -webkit-transform: scale(1.2, 1.2); |
77 } | 77 } |
78 | 78 |
79 100% { | 79 100% { |
80 -webkit-transform: scale(1, 1); | 80 -webkit-transform: scale(1, 1); |
81 } | 81 } |
82 } | 82 } |
83 | 83 |
84 .app[new=new] { | 84 html[install-animation-enabled=true] .app[new=new] { |
85 opacity: 0; | 85 opacity: 0; |
86 } | 86 } |
87 | 87 |
88 .app[new=installed] { | 88 html[install-animation-enabled=true] .app[new=installed] { |
89 -webkit-animation: bounce .5s ease-in-out; | 89 -webkit-animation: bounce .5s ease-in-out; |
90 -webkit-transition: opacity .5s; | 90 -webkit-transition: opacity .5s; |
91 } | 91 } |
92 | 92 |
93 a[app-id=web-store-entry] { | 93 a[app-id=web-store-entry] { |
94 background-image: url("web_store_icon.png"); | 94 background-image: url("web_store_icon.png"); |
95 } | 95 } |
96 | 96 |
97 menu > button.default { | 97 menu > button.default { |
98 font-weight: bold; | 98 font-weight: bold; |
99 } | 99 } |
OLD | NEW |