summaryrefslogtreecommitdiffstats
path: root/css
diff options
context:
space:
mode:
Diffstat (limited to 'css')
-rw-r--r--css/styles.css87
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;
+}