| Index: chrome/skin/firstRun.css |
| =================================================================== |
| --- a/chrome/skin/firstRun.css |
| +++ b/chrome/skin/firstRun.css |
| @@ -15,16 +15,6 @@ |
| * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| */ |
| -@namespace url("http://www.w3.org/1999/xhtml"); |
| - |
| -@media not handheld |
| -{ |
| - body |
| - { |
| - font-size: 130%; |
| - } |
| -} |
| - |
| /** This should be unnecessary in Gecko 2.0 and above. */ |
| *[hidden] |
| { |
| @@ -33,39 +23,449 @@ |
| body |
| { |
| - background-image: url(abp-icon-big.png); |
| - background-repeat: no-repeat; |
| - background-position: 95% 5%; |
| - font-family: Arial,sans-serif; |
| + font-family: Arial, Helvetica, sans-serif; |
| + font-size: 14px; |
| + line-height: 140%; |
| + color: #000000; |
| + background-color: #f8f6f2; |
| + background-image: url(/skin/background.png); |
| + margin: 0 auto; |
| + padding: 0; |
| + max-width: 900px; |
| } |
| -.sectionTitle |
| +a:link, a:visited |
| { |
| - font-weight: bold; |
| + color: #7d7d7d; |
| } |
| -#listNameContainer, |
| -#listNone |
| +button, .arrow |
| { |
| - margin: 1em 2em; |
| + cursor: pointer; |
| } |
| -#listNone |
| +header, p |
| { |
| - font-style: italic; |
| + margin: 15px 0 5px; |
| } |
| -#acceptableAds |
| +#content |
| { |
| - font-size: 80%; |
| - font-weight: bold; |
| -} |
| -#acceptableAds > * |
| -{ |
| - font-weight: normal; |
| + padding: 0 90px; |
| } |
| -.sectionContainer |
| +header |
| { |
| - margin: 1em 2em; |
| + padding-left: 148px; |
| + background-image: url(/skin/abp-icon-big.png); |
| + background-position: 0% 50%; |
| + background-repeat: no-repeat; |
| + min-height: 128px; |
| + vertical-align: middle; |
| + line-height: 1; |
| + |
| + display: -webkit-box; |
| + -webkit-box-orient: vertical; |
| + -webkit-box-pack: center; |
| + |
| + display: -moz-box; |
| + -moz-box-orient: vertical; |
| + -moz-box-pack: center; |
| + |
| + display: -o-box; |
| + -o-box-orient: vertical; |
| + -o-box-pack: center; |
| + |
| + display: -ms-box; |
| + -ms-box-orient: vertical; |
| + -ms-box-pack: center; |
| + |
| + display: box; |
| + box-orient: vertical; |
| + box-pack: center; |
| } |
| + |
| +header h1 |
| +{ |
| + font-size: 40px; |
| + font-weight: normal; |
| + margin: 0; |
| +} |
| + |
| +#features |
| +{ |
| + display: block; |
| + border-spacing: 10px; |
| + margin: 0px; |
| + padding: 0px; |
| + padding-bottom: 120px; |
| + white-space: nowrap; |
| +} |
| + |
| +#features-title |
| +{ |
| + font-size: 22px; |
| + color: #cc0000; |
| + margin: 30px 0px 20px; |
| +} |
| + |
| +#features-title::after |
| +{ |
| + content: ":"; |
| +} |
| + |
| +.feature |
| +{ |
| + display: block; |
| + list-style-type: none; |
| + padding-bottom: 20px; |
| +} |
| + |
| +.feature-image, .feature-description |
| +{ |
| + display: inline-block; |
| + *display: inline; /* IE6 inline-block fix */ |
| + *zoom: 1; |
| + vertical-align: top; |
| +} |
| + |
| +.feature-description |
| +{ |
| + width: 550px; |
| + margin: 0px 10px; |
| +} |
| + |
| +.feature-title |
| +{ |
| + color: black; |
| + font-weight: bold; |
| + font-size: 120%; |
| +} |
| + |
| +.feature-title::after |
| +{ |
| + content: ":"; |
| +} |
| + |
| +.feature-text |
| +{ |
| + margin: 7px 0px; |
| + white-space: normal; |
| +} |
| + |
| +.feature-image |
| +{ |
| + width: 57px; |
| + height: 57px; |
| +} |
| + |
| +#feature-typo .feature-image |
| +{ |
| + background-image: url(/skin/features/typo.png); |
| +} |
| + |
| +#feature-malware .feature-image |
| +{ |
| + background-image: url(/skin/features/malware.png); |
| +} |
| + |
| +#feature-social .feature-image |
| +{ |
| + background-image: url(/skin/features/social.png); |
| +} |
| + |
| +#feature-tracking .feature-image |
| +{ |
| + background-image: url(/skin/features/tracking.png); |
| +} |
| + |
| +.feature button |
| +{ |
| + cursor: pointer; |
| + position: relative; |
| + top: 0px; |
| + padding: 5px 10px; |
| + *padding: 2px 3px; |
| + font-weight: none; |
| + font-size: inherit; |
| + color: white; |
| + text-shadow: 2px 2px 2px #327d14; |
| + border: none; |
| + border-radius: 3px; |
| + box-shadow: 0 1px 0 0 #486c15, 0 2px 0 0 #517422; |
| + background-color: #62c52b; |
| + background: -webkit-linear-gradient(top, #62c52b, #4f9d22); |
| + background: -moz-linear-gradient(top, #62c52b, #4f9d22); |
| + background: -o-linear-gradient(top, #62c52b, #4f9d22); |
| + background: -ms-linear-gradient(top, #62c52b, #4f9d22); |
| + background: linear-gradient(top, #62c52b, #4f9d22); |
| + -webkit-transition: box-shadow 0.3s ease; |
| + -moz-transition: box-shadow 0.3s ease; |
| + -o-transition: box-shadow 0.3s ease; |
| + -ms-transition: box-shadow 0.3s ease; |
| + transition: box-shadow 0.3s ease; |
| +} |
| + |
| +.feature button:hover |
| +{ |
| + box-shadow: 0px 2px 7px #486c15, 0 1px 0 0 #486c15; |
| +} |
| + |
| +.feature button:active |
| +{ |
| + top: 3px; |
| + top: 0px\9; |
| + box-shadow: 0px 0px 7px #486c15; |
| + background-color: #4f9d22; |
| + background: -webkit-linear-gradient(bottom, #62c52b, #4f9d22); |
| + background: -moz-linear-gradient(bottom, #62c52b, #4f9d22); |
| + background: -o-linear-gradient(bottom, #62c52b, #4f9d22); |
| + background: -ms-linear-gradient(bottom, #62c52b, #4f9d22); |
| + background: linear-gradient(bottom, #62c52b, #4f9d22); |
| + -webkit-transition: none; |
| + -moz-transition: none; |
| + -o-transition: none; |
| + -ms-transition: none; |
| + transition: none; |
| + *zoom: 1; |
| +} |
| + |
| +.feature button.disable |
| +{ |
| + text-shadow: 2px 2px 2px #9d4f22; |
| + box-shadow: 0 1px 0 0 #9d4f22, 0 2px 0 0 #999; |
| + background-color: #c5622b; |
| + background: -webkit-linear-gradient(top, #c5622b, #9d4f22); |
| + background: -moz-linear-gradient(top, #c5622b, #9d4f22); |
| + background: -o-linear-gradient(top, #c5622b, #9d4f22); |
| + background: -ms-linear-gradient(top, #c5622b, #9d4f22); |
| + background: linear-gradient(top, #c5622b, #9d4f22); |
| +} |
| + |
| +.feature button.disable:hover |
| +{ |
| + box-shadow: 0px 2px 7px #9d4f22, 0 1px 0 0 #9d4f22; |
| +} |
| + |
| +.feature button.disable:active |
| +{ |
| + top: 3px; |
| + top: 0px\9; |
| + box-shadow: 0px 0px 7px #9d4f22; |
| + background-color: #9d4f22; |
| + background: -webkit-linear-gradient(bottom, #c5622b, #9d4f22); |
| + background: -moz-linear-gradient(bottom, #c5622b, #9d4f22); |
| + background: -o-linear-gradient(bottom, #c5622b, #9d4f22); |
| + background: -ms-linear-gradient(bottom, #c5622b, #9d4f22); |
| + background: linear-gradient(bottom, #c5622b, #9d4f22); |
| + -webkit-transition: none; |
| + -moz-transition: none; |
| + -o-transition: none; |
| + -ms-transition: none; |
| + transition: none; |
| + *zoom: 1; |
| +} |
| + |
| +#shade |
| +{ |
| + -webkit-transition: opacity 0.2s ease; |
| + -moz-transition: opacity 0.2s ease; |
| + -o-transition: opacity 0.2s ease; |
| + -ms-transition: opacity 0.2s ease; |
| + transition: opacity 0.2s ease; |
| + opacity: 0.0; |
| + position: fixed; |
| + margin-left: 10px; |
| + bottom: 70px; |
| + z-index: 100; |
| +} |
| + |
| +.arrow |
| +{ |
| + width: 0; |
| + height: 0; |
| + border: 30px solid transparent; |
| + border-top-color: #000; |
| +} |
| + |
| +footer |
| +{ |
| + position: fixed; |
| + bottom: 0; |
| + left: 0; |
| + right: 0; |
| + padding: 70px 0 0; |
| + text-align: center; |
| + background: -webkit-linear-gradient(rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 1) 50px); |
| + background: -moz-linear-gradient(rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 1) 50px); |
| + background: -o-linear-gradient(rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 1) 50px); |
| + background: -ms-linear-gradient(rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 1) 50px); |
| + background: linear-gradient(rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 1) 50px); |
| +} |
| + |
| +footer h1 |
| +{ |
| + margin: 0; |
| + font-size: 18px; |
| + color: #666; |
| + position: fixed; |
| + bottom: 70px; |
| + left: 0; |
| + right: 0; |
| + -webkit-transition: opacity .3s ease; |
| + -moz-transition: opacity .3s ease; |
| + -o-transition: opacity .3s ease; |
| + -ms-transition: opacity .3s ease; |
| + transition: opacity .3s ease; |
| + opacity: 1; |
| +} |
| + |
| +#social ul |
| +{ |
| + list-style: none; |
| + display: inline-block; |
| + padding: 0; |
| + margin: 0; |
| +} |
| + |
| +#social:hover h1 |
| +{ |
| + opacity: 0; |
| +} |
| + |
| +#social ul:hover li { |
| + opacity: 0.3; |
| +} |
| + |
| +#social ul li |
| +{ |
| + display: inline-block; |
| + margin: 0px 5px; |
| + -webkit-transition: opacity .5s ease, bottom .3s ease; |
| + -moz-transition: opacity .5s ease, bottom .3s ease; |
| + -o-transition: opacity .5s ease, bottom .3s ease; |
| + -ms-transition: opacity .5s ease, bottom .3s ease; |
| + transition: opacity .5s ease, bottom .3s ease; |
| + position: relative; |
| + bottom: -30px; |
| +} |
| + |
| +#social ul li:hover |
| +{ |
| + opacity: 1.0; |
| + bottom: 0px; |
| +} |
| + |
| +.share-button |
| +{ |
| + display: inline-block; |
| + width: 82px; |
| + height: 82px; |
| +} |
| + |
| +#share-facebook |
| +{ |
| + background-image: url(/skin/social/facebook.png); |
| +} |
| + |
| +#share-twitter |
| +{ |
| + background-image: url(/skin/social/twitter.png); |
| +} |
| + |
| +#share-gplus |
| +{ |
| + background-image: url(/skin/social/gplus.png); |
| +} |
| + |
| +#glass-pane, #share-popup |
| +{ |
| + visibility: hidden; |
| + opacity: 0; |
| + -webkit-transition-property: opacity, visibility; |
| + -moz-transition-property: opacity, visibility; |
| + -o-transition-property: opacity, visibility; |
| + -ms-transition-property: opacity, visibility; |
| + transition-property: opacity, visibility; |
| +} |
| + |
| +#glass-pane |
| +{ |
| + position: fixed; |
| + top: 0; |
| + right: 0; |
| + bottom: 0; |
| + left: 0; |
| + background: rgba(0, 0, 0, 0.5) url(/skin/ajax-loader.gif) no-repeat 50% 50%; |
| + z-index: 101; |
| + |
| + -webkit-transition-duration: 0.2s; |
| + -moz-transition-duration: 0.2s; |
| + -o-transition-duration: 0.2s; |
| + -ms-transition-duration: 0.2s; |
| + transition-duration: 0.2s; |
| +} |
| + |
| +#share-popup |
| +{ |
| + position: absolute; |
| + top: 50%; |
| + left: 50%; |
| + border: none; |
| + -webkit-transition-delay: 0.1s; |
| + -moz-transition-delay: 0.1s; |
| + -o-transition-delay: 0.1s; |
| + -ms-transition-delay: 0.1s; |
| + transition-delay: 0.1s; |
| +} |
| + |
| +#glass-pane.visible, #share-popup.visible |
| +{ |
| + visibility: visible; |
| + opacity: 1; |
| +} |
| + |
| +#share-popup.visible |
| +{ |
| + -webkit-transition-duration: 0.15s; |
| + -moz-transition-duration: 0.15s; |
| + -o-transition-duration: 0.15s; |
| + -ms-transition-duration: 0.15s; |
| + transition-duration: 0.15s; |
| +} |
| + |
| +/* Firefox-specific code */ |
| +#feature-typo |
| +{ |
| + display: none; |
| +} |
| + |
| +html.firefox #feature-typo |
| +{ |
| + display: block; |
| +} |
| + |
| +/* Adjust font size on smaller screens */ |
| +@media (max-height: 800px) |
| +{ |
| + body |
| + { |
| + font-size: 19px; |
| + } |
| +} |
| + |
| +@media (max-height: 750px) |
| +{ |
| + body |
| + { |
| + font-size: 17px; |
| + } |
| +} |
| + |
| +@media (max-height: 700px) |
| +{ |
| + body |
| + { |
| + font-size: 16px; |
| + } |
| +} |