diff options
Diffstat (limited to 'helpers/DATA/firefox/gnu/abouthome/aboutHome.xhtml')
-rw-r--r-- | helpers/DATA/firefox/gnu/abouthome/aboutHome.xhtml | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/helpers/DATA/firefox/gnu/abouthome/aboutHome.xhtml b/helpers/DATA/firefox/gnu/abouthome/aboutHome.xhtml new file mode 100644 index 0000000..21e708f --- /dev/null +++ b/helpers/DATA/firefox/gnu/abouthome/aboutHome.xhtml @@ -0,0 +1,113 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- This Source Code Form is subject to the terms of the Mozilla Public + - License, v. 2.0. If a copy of the MPL was not distributed with this + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> + +<!DOCTYPE html [ + <!ENTITY % htmlDTD + PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "DTD/xhtml1-strict.dtd"> + %htmlDTD; + <!ENTITY % globalDTD SYSTEM "chrome://global/locale/global.dtd"> + %globalDTD; + <!ENTITY % aboutHomeDTD SYSTEM "chrome://browser/locale/aboutHome.dtd"> + %aboutHomeDTD; + <!ENTITY % browserDTD SYSTEM "chrome://browser/locale/browser.dtd" > + %browserDTD; +]> + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>&abouthome.pageTitle;</title> + + <link rel="icon" type="image/png" id="favicon" + href="chrome://branding/content/icon32.png"/> + <link rel="stylesheet" type="text/css" media="all" + href="chrome://browser/content/abouthome/aboutHome.css"/> + +<style> + +label{ +position:relative; +bottom:2px; +left:2px; +} + +#addonsform form{ +position:relative; +left:10px; +} + +em { +color:#600 +} + +a{ +color:#004998 +} + +#addonsform{ +background-color:#fff; +font-size:14px; +padding:10px 30px 20px 30px; +border-radius: 10px; +box-shadow: 0px 0px 5px #888888; +} + +.block-side-margin { + min-width: 16px; + -moz-box-flex: 1; +} + +#block-horizontal-margin { + display: -moz-box; + -moz-box-flex: 1; +} + +ul li { +list-style:none; +background:#ddd; +border-radius:3px; +padding:3px 5px 3px 5px; +margin:5px; +box-shadow: 0px 2px 0 #ccc ; +float:left; +} + +ul li a{ +font-weight:bold; +color:#666; +text-shadow:0px 1px 0px #fff; +} + +#footer{ +min-height:100px; +} + +</style> + + </head> + + <body dir="&locale.dir;" onload="prepare();"> + + + <div class="spacer"/> + <div id="topSection"> + <img src="chrome://branding/content/about-logo.png"/> + + <div id="searchContainer"> + <form name="searchForm" id="searchForm" action="https://duckduckgo.com/html/"> + <input type="text" name="q" value="" id="searchText" maxlength="256" + autofocus="autofocus"/> + <input id="searchSubmit" type="submit" value="&abouthome.searchEngineButton.label;"/> + </form> + </div> + + </div> + + <div class="spacer"/> + + </body> +</html> + |