diff options
author | Gord Hill <caseyweederman@gmail.com> | 2013-07-03 07:45:13 +0800 |
---|---|---|
committer | Ekaterina Gerasimova <kittykat3756@gmail.com> | 2013-07-06 05:10:10 +0800 |
commit | a8b1de542ba2e092708cc78df3e0eff88a58b19c (patch) | |
tree | 0b614eee776ce9ac1fa2328639ab31a6d857b4b5 | |
parent | aa3cbe8cbc0447079033cca68ff786fe7a53fb47 (diff) | |
download | gsoc2013-epiphany-a8b1de542ba2e092708cc78df3e0eff88a58b19c.tar gsoc2013-epiphany-a8b1de542ba2e092708cc78df3e0eff88a58b19c.tar.gz gsoc2013-epiphany-a8b1de542ba2e092708cc78df3e0eff88a58b19c.tar.bz2 gsoc2013-epiphany-a8b1de542ba2e092708cc78df3e0eff88a58b19c.tar.lz gsoc2013-epiphany-a8b1de542ba2e092708cc78df3e0eff88a58b19c.tar.xz gsoc2013-epiphany-a8b1de542ba2e092708cc78df3e0eff88a58b19c.tar.zst gsoc2013-epiphany-a8b1de542ba2e092708cc78df3e0eff88a58b19c.zip |
Fonts and user CSS pages filled out.
-rw-r--r-- | help/C/pref-css.page | 27 | ||||
-rw-r--r-- | help/C/pref-font.page | 21 |
2 files changed, 30 insertions, 18 deletions
diff --git a/help/C/pref-css.page b/help/C/pref-css.page index 958d63a49..745ec1876 100644 --- a/help/C/pref-css.page +++ b/help/C/pref-css.page @@ -6,12 +6,12 @@ <info> <link type="guide" xref="index#pref"/> <link type="guide" xref="pref"/> - <revision pkgversion="3.9" version="0.1" date="2013-04-12" status="stub"/> + <revision pkgversion="3.9" version="0.1" date="2013-04-12" status="review"/> <credit type="author copyright"> - <name></name> - <email its:translate="no"></email> - <years></years> + <name>Gordon Hill</name> + <email its:translate="no">caseyweederman@gmail.com</email> + <years>2013</years> </credit> <credit type="copyright editor"> <name></name> @@ -26,17 +26,26 @@ <title>Display theme</title> - <p></p> + <p>Epiphany allows custom CSS to change the look and feel of every web page you visit.</p> <steps> <item> - <p></p> + <p>With <app>Epiphany</app> in focus, open the <app>Web</app> <gui>Application menu</gui> and click on <gui>preferences</gui>.</p> </item> <item> - <p></p> + <p>Check the box marked <gui>Use custom stylesheet</gui> and then <gui>Edit Stylesheet</gui>.</p> + </item> + <item> + <p>Type your custom CSS into the <app>Gedit</app> window that appears and save the file.</p> </item> </steps> - - <p></p> + <p>An example of custom CSS:</p> + <code><![CDATA[ +body{ + /*Make everything upside-down*/ + -webkit-transform: rotate(180deg); +} +]]></code> + <p>Every page load beyond this point will take your custom CSS into consideration.</p> </page> diff --git a/help/C/pref-font.page b/help/C/pref-font.page index aa724a843..1aea4bab8 100644 --- a/help/C/pref-font.page +++ b/help/C/pref-font.page @@ -6,12 +6,12 @@ <info> <link type="guide" xref="index#pref"/> <link type="guide" xref="pref"/> - <revision pkgversion="3.9" version="0.1" date="2013-04-12" status="stub"/> + <revision pkgversion="3.9" version="0.1" date="2013-04-12" status="review"/> <credit type="author copyright"> - <name></name> - <email its:translate="no"></email> - <years></years> + <name>Gordon Hill</name> + <email its:translate="no">caseyweederman@gmail.com</email> + <years>2013</years> </credit> <credit type="copyright editor"> <name></name> @@ -26,17 +26,20 @@ <title>Display font</title> - <p></p> - + <p>To change <app>Epiphany</app>'s default fonts and font sizes:</p> <steps> <item> - <p></p> + <p>With <app>Epiphany</app> in focus, open the <app>Web</app> <gui>Application menu</gui> and click on <gui>preferences</gui>.</p> + </item> + <item> + <p>Uncheck the box marked Use system fonts.</p> </item> <item> - <p></p> + <p>Click on the desired font group and manipulate the font dialog.</p> </item> </steps> - <p></p> + <p>In Epiphany you can also increase font size with <keyseq><key>Ctrl</key><key>+</key></keyseq> and decrease it with <keyseq><key>Ctrl</key><key>-</key></keyseq>.</p> + <p>See <link xref="a11y-font-size">the font accessibility page</link> for information on changing system fonts.</p> </page> |