Team:USTC-Software/Project/Examples/css
From 2013.igem.org
(Difference between revisions)
Line 10: | Line 10: | ||
a#content { | a#content { | ||
text-decoration:none; | text-decoration:none; | ||
- | color:# | + | color:#36526c; |
transition:1s; | transition:1s; | ||
} | } | ||
Line 16: | Line 16: | ||
a#content:hover { | a#content:hover { | ||
text-decoration:none; | text-decoration:none; | ||
- | color:# | + | color:#6b93af; |
transition:1s; | transition:1s; | ||
} | } |
Revision as of 14:08, 26 September 2013
- example {
background: url() repeat; width:1000px; margin:0 auto; padding:30px; margin-top:100px; font:18px Arial, Helvetica, sans-serif;
}
a#content {
text-decoration:none; color:#36526c; transition:1s;
}
a#content:hover {
text-decoration:none; color:#6b93af; transition:1s;
}