1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- a {
- color: #427fed;
- color: #1e6b8c;
- text-decoration: none;
- }
-
- a:visited {
- color: #6f32ad;
-
- }
-
- a:hover {
- text-decoration: underline;
- background: #f0f0ff;
- }
-
- a:active {
- background-color: #427fed;
- color: #fffff6;
- }
-
- body {
- background-color: #fffff6;
- background-image: none;
- color: #330;
- font-family: georgia;
- font-size: 15pt;
- margin: 2em auto;
- padding: 0 2em;
- max-width: 45em;
- width: auto;
- }
-
- h1, h2, h3, h4, h5, h6 {
- color: #703820;
- line-height: 1.2em;
- }
-
- img.resize{
- width: 90%;
- height: auto;
- }
-
- img {
- width: 90%;
- float: center;
- clear: right;
- padding: 10px;
- margin: 20px;
- border: solid 0px #888;
- }
-
- p, li, dd, dt, blockquote, span {
- font-size: 15pt;
- line-height: 1.4em;
- }
|