2011/05/05 投稿系など。
@@ -17,7 +17,16 @@ | ||
17 | 17 | font-size:14px; |
18 | 18 | } |
19 | 19 | |
20 | +input.ime_ia { | |
21 | + ime-mode: inactive; | |
22 | +} | |
20 | 23 | |
24 | +input.ime_ac, textarea.ime_ac, { | |
25 | + ime-mode: active; | |
26 | +} | |
27 | + | |
28 | + | |
29 | + | |
21 | 30 | div.container { |
22 | 31 | width:840px; |
23 | 32 | text-align: left; |
@@ -40,20 +49,35 @@ | ||
40 | 49 | |
41 | 50 | } |
42 | 51 | |
43 | -br.clear { | |
44 | - font-size:1px; | |
45 | - height:1px; | |
52 | +br.clear, div.clear { | |
53 | + font-size:0px; | |
54 | + height:0px; | |
55 | + visibility: hidden; | |
46 | 56 | clear:both; |
47 | 57 | } |
48 | 58 | |
59 | +div.ctr, td.ctr { | |
60 | + text-align:center; | |
61 | +} | |
49 | 62 | |
50 | - | |
51 | - | |
52 | 63 | a { |
53 | 64 | text-decoration: none; |
54 | 65 | } |
55 | 66 | |
67 | +div.mainError { | |
68 | + color:red; | |
69 | + font-size:120%; | |
70 | + font-weight:bold; | |
71 | +} | |
56 | 72 | |
73 | +div.itemError { | |
74 | + color:red; | |
75 | + display:inline; | |
76 | + margin-right:20px; | |
77 | +} | |
78 | + | |
79 | + | |
80 | + | |
57 | 81 | div.menubar { |
58 | 82 | background-color:#ccddff; |
59 | 83 | margin: 10px 1px; |
@@ -91,7 +115,8 @@ | ||
91 | 115 | |
92 | 116 | div.articleBoxOut { |
93 | 117 | border: 1px solid #555; |
94 | - width:750; | |
118 | + width:750px; | |
119 | + text-align:left; | |
95 | 120 | } |
96 | 121 | |
97 | 122 | div.articleTitleBox { |
@@ -133,5 +158,49 @@ | ||
133 | 158 | |
134 | 159 | } |
135 | 160 | |
161 | +/* articleInput */ | |
162 | +div.inputForm { | |
136 | 163 | |
164 | +} | |
137 | 165 | |
166 | +div.inputForm form{ | |
167 | + margin:0px 0px; | |
168 | + padding:0px 0px; | |
169 | +} | |
170 | + | |
171 | +div.articleInput { | |
172 | + width:650px; | |
173 | + margin:10px 0px; | |
174 | + border:1px solid #999; | |
175 | +} | |
176 | + | |
177 | +div.preview { | |
178 | + margin: 5px 0px 8px 0px; | |
179 | +} | |
180 | +div.previewTitle { | |
181 | + margin-left:5%; | |
182 | + text-align:left; | |
183 | +} | |
184 | + | |
185 | +div.inputForm div.itemName { | |
186 | + float:left; | |
187 | + padding-top: 5px; | |
188 | + text-align:right; | |
189 | + width:120px; | |
190 | + border:0px solid #999; | |
191 | +} | |
192 | + | |
193 | +div.inputForm div.itemInput { | |
194 | + float:left; | |
195 | + margin-bottom:4px; | |
196 | + border:0px solid #999; | |
197 | +} | |
198 | + | |
199 | + | |
200 | +div.inputForm div.left1 { | |
201 | + width:180px; | |
202 | +} | |
203 | + | |
204 | + | |
205 | + | |
206 | + |
@@ -1,6 +1,6 @@ | ||
1 | 1 | <?php |
2 | 2 | /* |
3 | - * Epitta BBS | |
3 | + * Epitta BB | |
4 | 4 | * |
5 | 5 | */ |
6 | 6 |
@@ -7,6 +7,12 @@ | ||
7 | 7 | //エラー表示 |
8 | 8 | ini_set( 'display_errors', 1 ); |
9 | 9 | |
10 | +//環境指定 | |
11 | +define('ENV', 'dev'); | |
12 | + | |
13 | +//ディレクトリURL 例:http://www.epitta-test.com/epittam | |
14 | +define('DIRURL', ''); | |
15 | + | |
10 | 16 | //基本パス 例 : '/home/user/public_html/epitta' |
11 | 17 | define('BASEPATH', str_replace("\\", "/", '')); |
12 | 18 | //公開パス(CGIとHTML領域を分ける場合のみ設定) |