1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
@charset "euc-jp";
/*
* $Copyright: (c) 1999 Nakada.Nobuyoshi <nobu.nokada@softhome.net> $
* $Log: rd.css,v $
*/
body {
text : midnightblue; /* ĿŪ */
margin : 0.5em 5% 0.5em 5%; /* ٤äϹΤ */
background-color: linen;
line-height : 125%;
}
h1, h2, h3, h4 {
border-color: navy;
background: lightblue;
line-height : 120%; /* Ǥ */
padding : 3px;
}
h1 {
font-size : xx-large;
float: center;
text-align: center;
/* margin: 3em 0em 0em 0em; */
border-width: 8px 0px 8px 0px;
border-style: groove;
}
h2 {
font-size : x-large;
/* margin: 0.5em 0px 0px 0px; */
border-width: 2px 0px 0px 0.5em;
border-style: groove;
}
h3 {
font-size : large;
text-decoration: underline;
border-width: 0px 0px 1px 0px;
border-style: groove;
}
h4 {
text-indent: 1em;
}
pre {
font-family: monospace;
white-space: pre;
line-height: 100%;
margin: 1em;
padding: 1em;
background: antiquewhite;
border-width: 2pt 1pt 2pt 1pt;
border-color: antiquewhite;
border-style: inset;
}
em, strong {
font-style: normal;
font-weight: bold;
font-size: 125%;
}
em {
color: darkred;
}
strong {
color: red;
}
code {
color: darkgreen;
}
var {
color: darkblue;
}
sup, sub {
font-size: 75%;
}
A {
text-decoration: normal;
font-weight: bold;
}
A:link {
color: blueviolet;
}
A:visited {
color: cornflowerblue;
}
A:hover {
color: dodgerblue;
background: burywood;
}
A:active {
color: blueviolet;
background: crimson;
}
image {
frame: void;
border-width: 0px;
border-style: none;
}
address {
align : right;
}
p {
text-indent : 1em; /* äƬ */
line-height : 120%;
}
blockquote {
background: antiquewhite;
border-width: 1px;
border-color: brown;
}
dt {
textDecoration: underline;
}
dl {
margin: 0 1em 0 1em;
}
dl dl {
background: antiquewhite;
border-width: 0px 0px 0px 4px;
border-style: groove;
border-color: brown;
}
dl dl dl {
border: none;
}
|