Library.css: Difference between revisions
Jump to navigation
Jump to search
m (New page: == Classes and Selectors == ; <tt>a.entry:hover</tt> : <tt>a.entry:hover</tt> refers to the style of an entry in the collection as you mouse over it. ; <tt>.metadata > .title</tt> : <t...) |
mNo edit summary |
||
Line 1: | Line 1: | ||
Here is a generic <tt>library.css</tt> file: |
|||
<pre> |
|||
/* Style sheet for "replaceThisWithClassName" collection--------------- */ |
|||
.replaceThisWithClassName a.entry:hover { |
|||
background: |
|||
text-decoration: |
|||
} |
|||
.replaceThisWithClassName .metadata > .title { |
|||
color: |
|||
} |
|||
.replaceThisWithClassName a { |
|||
color: |
|||
text-decoration: |
|||
} |
|||
.replaceThisWithClassName a:hover { |
|||
text-decoration: |
|||
} |
|||
.replaceThisWithClassName h1, .dictionary h2, .dictionary h3, .dictionary h4, .dictionary h5 { |
|||
background: |
|||
} |
|||
</pre> |
|||
== Classes and Selectors == |
== Classes and Selectors == |
||
Revision as of 20:21, 17 July 2007
Here is a generic library.css file:
/* Style sheet for "replaceThisWithClassName" collection--------------- */ .replaceThisWithClassName a.entry:hover { background: text-decoration: } .replaceThisWithClassName .metadata > .title { color: } .replaceThisWithClassName a { color: text-decoration: } .replaceThisWithClassName a:hover { text-decoration: } .replaceThisWithClassName h1, .dictionary h2, .dictionary h3, .dictionary h4, .dictionary h5 { background: }
Classes and Selectors
- a.entry:hover
- a.entry:hover refers to the style of an entry in the collection as you mouse over it.
- .metadata > .title
- .metadata > .title refers to the style of the title of an entry in the collection.
- a
- a refers to the style of all linked text in the collection.
- a:hover
- <t>a:hover refers to the style of linked text as you mouse over it.
- h1, h2, h3, h4 h5
- h1,h2,h3,h4, and h5 refer to the style of various headers-- all the same formatting, but different size fonts.