Skip to content

Commit

Permalink
add images and styles
Browse files Browse the repository at this point in the history
  • Loading branch information
User committed Apr 17, 2009
1 parent ec92f85 commit abb9831
Show file tree
Hide file tree
Showing 22 changed files with 561 additions and 0 deletions.
92 changes: 92 additions & 0 deletions core/root/static/css/forms.css
@@ -0,0 +1,92 @@
/* form関連css */

input {
line-height: 1.2 !important;
}

div.text input,
div.password input {
width: 200px;
}
div.submit input {
padding: 0 6px;
line-height: 1.2;
}
div.section p.error_message {
margin-top: 0;
margin-left: 0;
font-size: 10px;
color: #f00;
}

/* form_full */

div.form_full {
margin: 30px 0;
}
div.form_full th,
div#sessionbox th {
padding: 5px 15px 5px 0;
width: 100px;
text-align: right;
white-space: nowrap;
vertical-align: top;
}
div.form_full td,
div#sessionbox td {
padding: 5px 0;
border: none;
vertical-align: top;
}
div.form_full div.text input,
div.form_full div.password input,
div.form_full div.textarea textarea {
width: 300px;
}
div.form_full tr.message th,
div#sessionbox tr.message th,
div.form_full tr.message td,
div#sessionbox tr.message td {
padding: 0;
font-size: 10px;
color: #f00;
}

/* login */

div.submit {
margin-top: 10px;
}
div.text,
div.password,
div.checkbox,
div.select,
div.textarea {
margin-top: 0;
}
div#login p {
margin: 10px 0;
}

/* signup_basic */

div#signup_basic {
margin-top: 10px;
}

/* commit_basic */

div#commit {
padding-top: 30px;
}
div#commit p {
padding: 10px 0;
border: 3px solid #00A7D4;
font-size: 16px;
text-align: center;
}
div#commit p strong {
font-weight: bold;
font-size: 16px;
color: #00A7D4;
}
4 changes: 4 additions & 0 deletions core/root/static/css/iepngfix.css
@@ -0,0 +1,4 @@
@charset "utf-8";
/* CSS Document */
/* 注意: iepngfix.htcへのパスは、iepngfixが適用されるHTMLファイルからの相対パスになる */
img, div, input { behavior: url(iepngfix.htc) }
7 changes: 7 additions & 0 deletions core/root/static/css/import.css
@@ -0,0 +1,7 @@
@charset "utf-8";
/* CSS Document */

@import "reset.css";
@import "style.css";
@import "forms.css";
@import "iepngfix.css";
22 changes: 22 additions & 0 deletions core/root/static/css/reset.css
@@ -0,0 +1,22 @@
/*
Copyright (c) 2007, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.3.0
*/
body {color:#000;background:#FFF;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,p,blockquote,th,td{margin:0;padding:0;}
/* original code :
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
*/
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
li {list-style:none;}
caption,th {text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
q:before,q:after{content:'';}
abbr,acronym {border:0;font-variant:normal;}
sup,sub {line-height:-1px;vertical-align: text-top;}
sub {vertical-align:text-bottom;}
input, textarea, select{font-family:inherit;font-size:inherit;font-weight:inherit;}

0 comments on commit abb9831

Please sign in to comment.