diff options
Diffstat (limited to 'epcv.css')
-rw-r--r-- | epcv.css | 145 |
1 files changed, 145 insertions, 0 deletions
diff --git a/epcv.css b/epcv.css new file mode 100644 index 0000000..93b9591 --- /dev/null +++ b/epcv.css @@ -0,0 +1,145 @@ +body { + -webkit-font-smoothing: antialiased; + font: normal normal 400 100%/1.5em; + font-family: Verdana,sans-serif; + margin: 1em; +} + + +hr { + clear: both; + visibility: hidden; + border: 0; + height: 1.5em; +} + +p { + position: relative; + left: 24em; + width: 40em; +} + +p code { + font: normal normal 87.5%/1.71428571em Menlo, monospace,sans-serif; + font-weight: bold; + color: #aaa; + position: absolute; + left: -8em; +} + + +ul { + position: relative; + left: 21.5em; + list-style-type: none; +} + + + +h1,h2,h3,h4,h5,h6 { + font-weight: 400; + font-family: Cousine,Verdana,sans-serif; +} + +h1 { + font-size: 300%; + line-height: 1.3334em; + margin: 0 0 .1666em +} + +h1+p { + position: relative; + left: 0; + font-size: 110%; +} + +h2 { + font-size: 175%; + line-height: 1.28571429em; + margin: 0 0 .35714286em +} + +h3 { + font-size: 137.5%; + /*font-weight: bold;*/ + color: #a00; + line-height: 1em; + margin-top: 1em; + position: relative; + top: 2em; +} + +h4 { + font-size: 112.5%; + line-height: 1em; + margin: 0; + position: relative; + left: 1.5em; + top: 2.25em; +} + +a +{ + -webkit-transition:color .2s ease-in-out; + color:#555; + text-decoration:none +} + +a:hover +{ + color:#39f +} + + + +/*blockquote,ol,p,ul { + display: block; + margin: 0 0 1.5em +}*/ + +blockquote { + /*border-left: solid .1em #E4E4E4;*/ + color: #919191; + font-size: 0.75em; + padding: 0; +} + +dl { + position: relative; + left: 24em; + width: 40em; +} + +dl p { + margin-top: 0; +} + +dt code { + font-weight: bold; + color: #aaa; + position: relative; + left: -8em; + top: -1.5em; + line-height: 0.5em; +} + +dd { + margin-bottom: 1em; +} + +dl ul { + position: relative; + left: -4em; + top: -1.5em; +} + +dt { + margin-bottom: 0; +} + +address { + position: absolute; + left: 12em; + top: -0.5em; +} + |