~ubuntu-branches/ubuntu/wily/epiphany-browser/wily

« back to all changes in this revision

Viewing changes to help/C/pref-css.page

Tags: upstream-3.10.1
ImportĀ upstreamĀ versionĀ 3.10.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<page xmlns="http://projectmallard.org/1.0/"
 
2
      xmlns:its="http://www.w3.org/2005/11/its"
 
3
      type="topic" style="task"
 
4
      id="pref-css">
 
5
 
 
6
  <info>
 
7
    <link type="guide" xref="index#pref"/>
 
8
    <link type="guide" xref="pref"/>
 
9
    <revision pkgversion="3.10" date="2013-07-06" status="candidate"/>
 
10
 
 
11
    <credit type="author copyright">
 
12
      <name>Gordon Hill</name>
 
13
      <email its:translate="no">caseyweederman@gmail.com</email>
 
14
      <years>2013</years>
 
15
    </credit>
 
16
    <credit type="copyright editor">
 
17
      <name>Ekaterina Gerasimova</name>
 
18
      <email its:translate="no">kittykat3756@gmail.com</email>
 
19
      <years>2013</years>
 
20
    </credit>
 
21
 
 
22
    <include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude"/>
 
23
 
 
24
    <desc>Override the theme which is used to display web pages.</desc>
 
25
  </info>
 
26
 
 
27
  <title>Custom CSS</title>
 
28
 
 
29
  <p>Epiphany allows you to set a custom CSS to change the look and feel of
 
30
  every web page that you visit. You may want to do this to set a preferred
 
31
  font size or colour scheme.</p>
 
32
 
 
33
  <steps>
 
34
    <item>
 
35
      <p>Open
 
36
      <guiseq><gui style="menu">Web</gui><gui style="menuitem">Preferences</gui><gui style="tab">Fonts &amp; Styles</gui></guiseq>.</p>
 
37
    </item>
 
38
    <item>
 
39
      <p>Press <gui style="button">Edit Stylesheet</gui>.</p>
 
40
    </item>
 
41
    <item>
 
42
      <p>Your default text editor will open. Add your custom CSS and save
 
43
      the file.</p>
 
44
    </item>
 
45
    <item>
 
46
      <p>Tick the <gui>Use custom stylesheet</gui> checkbox.</p>
 
47
    </item>
 
48
  </steps>
 
49
 
 
50
  <comment>
 
51
    <cite date="2013-07-06">Kat</cite>
 
52
    <p>Maybe use a slightly more practical example.</p>
 
53
  </comment>
 
54
 
 
55
  <p>An example of a custom CSS:</p>
 
56
  <code><![CDATA[
 
57
body{
 
58
    /*Make everything upside-down*/
 
59
    -webkit-transform: rotate(180deg);
 
60
}
 
61
]]></code>
 
62
 
 
63
  <p>Your custom CSS will override the style sheet on pages which you visit
 
64
  after you enable it..</p>
 
65
 
 
66
</page>