Team:USTC-Software/Project/Examples/css
From 2013.igem.org
(Difference between revisions)
(8 intermediate revisions not shown) | |||
Line 1: | Line 1: | ||
#example { | #example { | ||
- | |||
width:1000px; | width:1000px; | ||
margin:0 auto; | margin:0 auto; | ||
padding:30px; | padding:30px; | ||
- | |||
font:18px Arial, Helvetica, sans-serif; | font:18px Arial, Helvetica, sans-serif; | ||
} | } | ||
a#content { | a#content { | ||
+ | text-decoration:none; | ||
+ | color:#36526c; | ||
+ | transition:1s; | ||
+ | } | ||
+ | |||
+ | a#content:hover { | ||
text-decoration:none; | text-decoration:none; | ||
color:#6b93af; | color:#6b93af; | ||
+ | transition:1s; | ||
} | } | ||
+ | |||
+ | |||
+ | #examplesbutton { color:#aaed51;} | ||
+ | |||
+ | |||
+ | h3 { font-size: 110%;} |
Latest revision as of 02:08, 28 October 2013
- example {
width:1000px; margin:0 auto; padding:30px; 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;
}
- examplesbutton { color:#aaed51;}
h3 { font-size: 110%;}