diff options
Diffstat (limited to 'php/example.css')
-rw-r--r-- | php/example.css | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/php/example.css b/php/example.css new file mode 100644 index 0000000..7fd715a --- /dev/null +++ b/php/example.css @@ -0,0 +1,79 @@ +.lb_toplink +{ + font-size: small; +} + +.lb_sublink +{ + font-size: x-small; +} + +body +{ + font-size: small; + font-family: sans-serif; + background: white; + color: black; +} + +a:link +{ + font-style: normal; + font-weight: bold; + text-decoration: none; + color: black; +} + +a:visited +{ + font-style: normal; + font-weight: bold; + text-decoration: none; + color: black; +} + +a:hover +{ + font-style: normal; + font-weight: bold; + text-decoration: underline; + color: black; +} + +a:active +{ + font-style: normal; + font-weight: bold; + text-decoration: underline; + color: black; +} + +div.leftbar +{ + width: 200px; + min-width: 200px; + border: 1px solid black; + padding: 0.25em; + float: left; + background-color: #aaaaff; +} + +h2.lb_header +{ + border: 1px none blue; + padding: 0.1em; + margin: 0em; + background-color: blue; + color: white; + font-size: medium; +} + +li.lb_linklist +{ + list-style-type: none; +} + +li.lb_sublist +{ + list-style-type: none; +} |