diff options
author | Christophe Coenraets <ccoenraets@gmail.com> | 2011-12-01 12:00:42 -0500 |
---|---|---|
committer | Christophe Coenraets <ccoenraets@gmail.com> | 2011-12-01 12:00:42 -0500 |
commit | 6fc276d593468dcdc8eb04c707dd14da22b59650 (patch) | |
tree | 69274f335e0f398f96656e34020b1771e399bb6d /css | |
download | wine-cellar-php-master.zip wine-cellar-php-master.tar.gz wine-cellar-php-master.tar.bz2 |
Initial commitHEADorigin/masterorigin/HEADmaster
Diffstat (limited to 'css')
-rw-r--r-- | css/styles.css | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/css/styles.css b/css/styles.css new file mode 100644 index 0000000..c672171 --- /dev/null +++ b/css/styles.css @@ -0,0 +1,87 @@ +* { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 18px; +} + +.header { + padding-top: 5px; +} + +.leftArea { + position: absolute; + left: 10px; + top: 70px; + bottom: 20px; + width: 260px; + border:solid 1px #CCCCCC; + overflow-y: scroll; +} + +.mainArea { + position: absolute; + top: 70px; + bottom: 20px; + left:300px; + overflow-y: scroll; + width:300px; +} + +.rightArea { + position: absolute; + top: 70px; + bottom: 20px; + left:650px; + overflow-y: scroll; + width:270px; +} + +ul { + list-style-type: none; + padding-left: 0px; + margin-top: 0px; +} + +li a { + text-decoration:none; + display: block; + color: #000000; + border-bottom:solid 1px #CCCCCC; + padding: 8px; +} + +li a:hover { + background-color: #4B0A1E; + color: #BA8A92; +} + +input, textarea { + border:1px solid #ccc; + min-height:30px; + outline: none; +} + +.mainArea input { + margin-bottom:15px; + margin-top:5px; + width:280px; +} + +textarea { + margin-bottom:15px; + margin-top:5px; + height: 200px; + width:250px; +} + +label { + display:block; +} + +button { + padding:6px; +} + + +#searchKey { + width:160px; +} |