PHPで動く掲示板プログラムで使っているスタイルシート集です。
CSSで書かれています。あまりしっかり作っていないので無駄な部分も多いと思います。
配色など、好みに合わせて変えてみて下さい。
basic.css
@charset: utf8; /* 掲示板プログラム全体で使用するスタイルシートです。 */ body { background-color: #fafaff; } .monospace { font-family: "VL-Gothic", monospace; } div.header h2 { margin: 0px 10px; padding: 0px 20px; }
auth.css
@charset: utf8; /* login.phpが用意し、各プログラムが出力するヘッドバー用のスタイルシートです。 */ p.byAuth { margin: 0; padding: 3px 10px; background-color: #35478c; color: #add5f7; } p.byAuth a:link { color: #add5f7; } p.byAuth a:visited { color: #add5f7; } p.byAuth a:active { color: #add5f7; } p.logout { }
bbs.css
@charset: utf8; div.header { margin-left: auto; margin-right:auto; } div.header h2 { margin: 0px 10px; padding: 0px 20px; } div.left { float: left; width: 450px; margin-top: 0px; margin-left: 10px; padding-top: 0px; padding-left: 20px; } div.left input.* { display: inline; } div.right { float: left; width: 400px; } div.footer { width: 100%; clear: left; }
load.css
@charset: utf8; div.refresh_time { text-align: center; color: #ff0000; font-weight: bold; } div.last_reload { text-align: right; color: #4e7ac7; font-weight: bold; } div.end { text-align: right; } div.kiji { margin: 0 5px 40px; } div.kiji span.sub { font-weight: bold; } div.kiji span.user { font-style: oblique } div.kiji .data { margin: 5px 20px; padding: 0; }
readonly.css
@charset: utf8; div.header { margin: 0px 10px; padding: 0px 20px; }
admin.css
@charset: utf8; body { width: 900px; } div.menu { height: 26px; } p.menu { float: left; margin: 0px; display: block; width: 160px; margin-top: 5px; font-weight: bold; font-size: larger; } ul { margin: 0px; } li { float: left; display: block; } .on { background-color: #35478c; width: 180px; height: 26px; margin-right: 5px; text-align: center; } .off { background-color: #7fb2f0; width: 180px; height: 26px; margin-right: 5px; text-align: center; } .on a { text-decoration: none; display: block; margin-top: 5px; } .on a:link {color: #8BAFFF;} .on a:visited {color: #8BAFFF;} .on a:hover {color: #8BAFFF;} .off a { text-decoration: underline; display: block; margin-top: 5px; } .off a:link {color: #000000;} .off a:visited {color: #000000;} .off a:hover {color: #000000;} div.box { clear: both; border-top: solid 10px #4e7ac7; border-bottom: solid 2px #4e7ac7; border-left: solid 2px #4e7ac7; border-right: solid 2px #4e7ac7; padding: 0px 8px; } .contents form h3 { margin: 0px; }
Posted in PHPで動く掲示板プログラム |