- Timestamp:
- 2011/07/27 13:53:29 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_11-dev/html/user_data/packages/sphone/css/button.css
r20764 r21052 1 1 @charset "utf-8"; 2 /* =================================================================== 3 CSS information 2 4 3 /* スマートフォン用グラデーションボタン 4 ----------------------------------------------- */ 5 /*.spbtn { 6 display: block; 7 margin: 0.5em auto 0.3em; 8 padding: 0.4em 0; 9 font: bold large helvetica; 10 text-shadow: 0px -1px 1px rgba(0,0,0,0.5); 11 vertical-align: middle; 12 text-align:center; 13 text-decoration: none; 14 color: #ffffff; 15 background-color: #666666; 16 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.25)), to(rgba(0,0,0,0.2)), color-stop(0.5, rgba(255,255,255,0.05)), color-stop(0.51, rgba(0,0,0,0.05))); 17 border: solid 2px #666666; 18 -webkit-border-radius: 8px; 19 -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.7); 20 }*/ 21 .spbtn:before { 22 content: ""; 23 display: block; 24 height: 0; 25 clear: both; 26 visibility: hidden; 27 } 28 /*a.spbtn { 29 width: 79%; 30 max-width: 236px; 31 }*/ 32 input.spbtn { 33 width: 100%; 34 } 5 file name :button.css 6 style info :ボタン用 35 7 36 /* ボタン大(汎用) 37 ----------------------------------------------- */ 38 .spbtn-normal { 39 color: #ffffff; 40 border: solid 2px #666666; 41 background-color: #666666; 42 /*background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.25)), to(rgba(0,0,0,0.2)), color-stop(0.5, rgba(255,255,255,0.05)), color-stop(0.51, rgba(0,0,0,0.05)));*/ 8 =================================================================== */ 9 .btn_area{ 10 padding:10px; 11 clear:both; 12 } 13 ul.btn_btm{ 14 clear:both; 15 } 16 .btn_area li,ul.btn_btm li{ 17 margin-bottom:12px; 18 } 19 .btn_area_top{ 20 box-shadow:0 1px 1px 1px rgba(255,255,255,1) inset; 21 -webkit-box-shadow:0 1px 1px 0 rgba(255,255,255,1) inset; 22 -moz-box-shadow: 0 1px 1px rgba(255,255,255,1) inset; 23 border-top: 1px solid #CCC; 24 border-bottom: 1px solid #CCC; 25 background:#EEE; 26 display:block; 27 clear:both; 28 margin-bottom:10px; 29 padding:10px 0; 30 } 31 /*----------------------------------------------- 32 ボタン(進む系ボタン:グリーン) 33 ----------------------------------------------- */ 34 a.btn,a.btn:link,a.btn:visited,a.btn:hover{ 35 color:#FFF; 36 font-size: 16px; 37 font-weight:bold; 38 text-decoration: none; 39 text-align:center; 40 padding: 10px; 41 text-shadow: 0 -1px 1px rgba(0,0,0,1); 42 border: 1px solid #A9ABAD; 43 border-radius: 5px; 44 -moz-border-radius: 5px; 45 -webkit-border-radius: 5px; 46 display:block; 47 background:#B4DF34; 48 background: -moz-linear-gradient(center top, #B4DF34 0%,#669222 100%); 49 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #B4DF34),color-stop(1, #669222)); 50 cursor:pointer; 51 -webkit-transition:opacity 0.5s ease-in; 52 -moz-transition:opacity 0.5s ease-in; 53 } 54 input[type="submit"].btn{ 55 width:100%; 56 color:#FFF; 57 font-size: 16px; 58 font-weight:bold; 59 text-decoration: none; 60 text-align:center; 61 padding: 10px; 62 text-shadow: 0 -1px 1px rgba(0,0,0,1); 63 border: 1px solid #A9ABAD; 64 border-radius: 5px; 65 -moz-border-radius: 5px; 66 -webkit-border-radius: 5px; 67 display:block; 68 background:#B4DF34; 69 background: -moz-linear-gradient(center top, #B4DF34 0%,#669222 100%); 70 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #B4DF34),color-stop(1, #669222)); 71 cursor:pointer; 72 -webkit-transition:opacity 0.5s ease-in; 73 -moz-transition:opacity 0.5s ease-in; 74 } 75 /*----------------------------------------------- 76 ボタン(戻る系ボタン:グレー) 77 ----------------------------------------------- */ 78 a.btn_back,a.btn_back:link,a.btn_back:visited,a.btn_back:hover { 79 color:#FFF; 80 font-size: 16px; 81 font-weight:bold; 82 text-decoration: none; 83 text-align:center; 84 text-shadow: 0 -1px 1px rgba(0,0,0,1); 85 border: 1px solid #A9ABAD; 86 border-radius: 5px; 87 -moz-border-radius: 5px; 88 -webkit-border-radius: 5px; 89 display:block; 90 padding:5px 0; 91 background:#999999; 92 background: -moz-linear-gradient(center top, #C5C5C5 0%,#999999 100%); 93 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #C5C5C5),color-stop(1, #999999)); 94 } 95 input[type="submit"].btn_back{ 96 color:#FFF; 97 font-size: 16px; 98 font-weight:bold; 99 text-decoration: none; 100 text-align:center; 101 text-shadow: 0 -1px 1px rgba(0,0,0,1); 102 border: 1px solid #A9ABAD; 103 border-radius: 5px; 104 -moz-border-radius: 5px; 105 -webkit-border-radius: 5px; 106 display:block; 107 padding:5px 0; 108 background:#999999; 109 background: -moz-linear-gradient(center top, #C5C5C5 0%,#999999 100%); 110 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #C5C5C5),color-stop(1, #999999)); 111 } 112 /*----------------------------------------------- 113 ボタン(サブ系ボタン:ライトグレー) 114 ----------------------------------------------- */ 115 .btn_sub,a.btn_sub,a.btn_sub:link,a.btn_sub:visited,a.btn_sub:hover { 116 color:#000; 117 font-size: 16px; 118 padding:5px 0; 119 font-weight:bold; 120 text-decoration: none; 121 text-align:center; 122 text-shadow: 0 -1px 1px rgba(0,0,0,0.3); 123 border: 1px solid #A9ABAD; 124 border-radius: 5px; 125 -moz-border-radius: 5px; 126 -webkit-border-radius: 5px; 127 display:block; 128 background:#FDFDfD; 129 background: -moz-linear-gradient(center top, #FDFDFD 0%,#D7DDE3 100%); 130 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FDFDFD),color-stop(1, #D7DDE3)); 131 } 132 input[type="submit"].btn_sub{ 133 color:#000; 134 font-size: 16px; 135 padding:5px 0; 136 font-weight:bold; 137 text-decoration: none; 138 text-align:center; 139 text-shadow: 0 -1px 1px rgba(0,0,0,0.3); 140 border: 1px solid #A9ABAD; 141 border-radius: 5px; 142 -moz-border-radius: 5px; 143 -webkit-border-radius: 5px; 144 display:block; 145 background:#FDFDfD; 146 background: -moz-linear-gradient(center top, #FDFDFD 0%,#D7DDE3 100%); 147 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FDFDFD),color-stop(1, #D7DDE3)); 148 } 149 /*----------------------------------------------- 150 ボタン(追加系ボタン:ホワイト) 151 ----------------------------------------------- */ 152 a.btn_more,a.btn_more:link,a.btn_more:visited,a.btn_more:hover{ 153 color:#000; 154 font-size: 16px; 155 padding:5px 0; 156 font-weight:bold; 157 text-decoration: none; 158 text-align:center; 159 border: 1px solid #A9ABAD; 160 border-radius: 5px; 161 -moz-border-radius: 5px; 162 -webkit-border-radius: 5px; 163 display:block; 164 background: #FFF; 165 clear:both; 166 margin:10px; 167 } 168 input[type="submit"].btn_more{ 169 color:#000; 170 font-size: 16px; 171 padding:5px 0; 172 font-weight:bold; 173 text-decoration: none; 174 text-align:center; 175 border: 1px solid #A9ABAD; 176 border-radius: 5px; 177 -moz-border-radius: 5px; 178 -webkit-border-radius: 5px; 179 display:block; 180 background: #FFF; 181 clear:both; 182 } 183 /*----------------------------------------------- 184 ボタン(フッター) 185 ----------------------------------------------- */ 186 a.btn_btm{ 187 width:150px; 188 text-align: center; 189 color: #FFF; 190 background-color: #000; 191 background: -moz-linear-gradient(center top, #5E5E5E 0%,#232323 48%); 192 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #5E5E5E),color-stop(0.48, #232323)); 193 border:#303030 solid 1px; 194 text-shadow: 0 -1px 1px rgba(0,0,0,0.5); 195 -moz-border-radius: 5px; 196 -webkit-border-radius: 5px; 197 padding: 5px; 198 margin:10px auto; 199 transition: background-color 1s ease-in; 200 -webkit-transition: background-color 1s ease-in; 201 -moz-transition: opacity 1s ease-int; 202 } 203 .btn_btm,a.btn_btm:link,a.btn_btm:hover,a.btn_btm:visited{ 204 color:#FFF; 205 text-decoration:none; 206 } 207 input[type="submit"].btn_btm{ 208 width:150px; 209 text-align: center; 210 color: #FFF; 211 background-color: #000; 212 background: -moz-linear-gradient(center top, #5E5E5E 0%,#232323 48%); 213 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #5E5E5E),color-stop(0.48, #232323)); 214 border:#303030 solid 1px; 215 text-shadow: 0 -1px 1px rgba(0,0,0,0.5); 216 -moz-border-radius: 5px; 217 -webkit-border-radius: 5px; 218 padding: 5px; 219 margin:10px auto; 220 transition: background-color 1s ease-in; 221 -webkit-transition: background-color 1s ease-in; 222 -moz-transition: opacity 1s ease-int; 223 cursor:pointer; 224 } 225 /*----------------------------------------------- 226 ボタン小(編集/削除) 227 ----------------------------------------------- */ 228 ul.edit{ 229 float:right; 230 clear:right; 231 display:inline; 232 vertical-align:top; 233 line-height:1; 234 position:absolute; 235 right:10px; 236 top:15px; 237 } 238 ul.edit li{ 239 display:inline; 240 float:left; 241 line-height:1; 242 vertical-align:middle; 243 } 244 ul.edit li:first-child{ 245 margin-right:0.8em; 246 } 247 a.b_edit:link,a.b_edit:visited,a.b_edit:hover{ 248 color:#000; 249 font-size:11px; 250 padding:4px 5px; 251 border:#CCC solid 1px; 252 border-radius: 12px; 253 -moz-border-radius: 12px; 254 -webkit-border-radius: 12px; 255 background:#D7DDE3; 256 background: -moz-linear-gradient(center top, #FFFFFF 0%,#D7DDE3 100%); 257 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FFFFFF),color-stop(1, #D7DDE3)); 258 display:inline; 259 text-align:center; 260 cursor:pointer; 261 vertical-align:middle; 262 } 263 a.b_delete:link,a.b_delete:visited,a.b_delete:hover{ 264 vertical-align:top; 265 cursor:pointer; 266 } 267 /*----------------------------------------------- 268 ボタン(商品詳細:カゴに入れる) 269 ----------------------------------------------- */ 270 .cartbtn_default{ 271 width:50%!important; 272 font-size:15px; 273 padding:10px 0; 274 background:#669222; 275 background: -moz-linear-gradient(center top, #B4DF34 0%,#669222 100%); 276 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #B4DF34),color-stop(1, #669222)); 43 277 } 44 278 45 /* ボタン大(承諾、送信) 46 ----------------------------------------------- */ 47 .spbtn-agree { 48 background-color: #6dc935; 49 border: 1px solid #666666; 50 color: #FFFFFF; 51 display: block; 52 font: bold 120% helvetica; 53 margin: 0.5em auto 0.3em; 54 padding: 7px; 55 text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.5); 56 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.25)), to(rgba(0,0,0,0.2)), color-stop(0.5, rgba(255,255,255,0.05)), color-stop(0.51, rgba(0,0,0,0.05))); 57 -webkit-border-radius: 6px; 58 -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.7); 59 text-decoration:none; 60 } 61 62 /* ボタン大(キャンセル、退会) 63 ----------------------------------------------- */ 64 .spbtn-cancel { 65 color: #ffffff; 66 border: solid 2px #666666; 67 background-color: #fc4743; 68 /*background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.25)), to(rgba(0,0,0,0.2)), color-stop(0.5, rgba(255,255,255,0.05)), color-stop(0.51, rgba(0,0,0,0.05)));*/ 69 } 70 71 /* ボタン中(お問い合わせ、友達に教える) 72 ----------------------------------------------- */ 73 .spbtn-medeum { 74 background-color: #aaaaaa; 75 border: 1px solid #666666; 76 color: #FFFFFF; 77 display: block; 78 font: bold 100% helvetica; 79 margin: 0 auto; 80 padding: 7px; 81 text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.5); 82 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.25)), to(rgba(0,0,0,0.2)), color-stop(0.5, rgba(255,255,255,0.05)), color-stop(0.51, rgba(0,0,0,0.05))); 83 -webkit-border-radius: 6px; 84 -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.7); 85 /*text-shadow: 0px -1px 1px rgba(0,0,0,0.5); 86 -webkit-border-radius: 6px; 87 -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.7);*/ 88 } 89 a.spbtn-medeum { 90 width: 95%; 91 text-decoration:none; 92 text-align:center; 93 } 94 input.spbtn-medeum { 95 width: 100%; 96 } 97 98 .spbtn-medeum02 { 99 background-color: #aaaaaa; 100 border: 1px solid #666666; 101 color: #FFFFFF; 102 display: block; 103 font: bold 100% helvetica; 104 margin: 0 auto; 105 padding: 7px; 106 text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.5); 107 text-align:center; 108 -webkit-border-radius: 6px; 109 /*text-shadow: 0px -1px 1px rgba(0,0,0,0.5); 110 -webkit-border-radius: 6px; 111 -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.7);*/ 112 } 113 114 115 116 /* ボタン小(お気に入りに登録、住所自動入力) 117 ----------------------------------------------- */ 118 .spbtn-small { 119 display: inline-block; 120 margin: 0; 121 padding: 0.2em 0.4em; 122 color: #ffffff; 123 text-shadow: 0px -1px 1px rgba(0,0,0,1); 124 font: bold 100% helvetica; 125 font-weight: bold; 126 background-color: #666666; 127 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.25)), to(rgba(0,0,0,0.2)), color-stop(0.5, rgba(255,255,255,0.05)), color-stop(0.51, rgba(0,0,0,0.05))); 128 text-align:center; 129 vertical-align: middle; 130 text-decoration: none; 131 border: solid 1px #333333; 132 -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.7); 133 } 134 135 136 /* ×ボタン (お気に入りから削除) 137 ----------------------------------------------- */ 138 .spbtn-delete { 139 display: inline-block; 140 line-height: 1em; 141 width: 1em; 142 height: 1em; 143 margin: 0; 144 margin-left: 5px; 145 padding: 0; 146 color: #ffffff; 147 text-shadow: 0px -1px 1px rgba(0,0,0,0.5); 148 font-family: verdana; 149 font-weight: bold; 150 background-color: #333333; 151 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.25)), to(rgba(0,0,0,0.2)), color-stop(0.5, rgba(255,255,255,0.05)), color-stop(0.51, rgba(0,0,0,0.05))); 152 text-align:center; 153 vertical-align: middle; 154 text-decoration: none; 155 -webkit-border-radius: 4px; 156 border: solid 1px #666666; 157 } 158 159 /* ログイン・会員登録・マイページボタン 160 ----------------------------------------------- */ 161 162 #block-login .spbtn{ 163 background-color: #666666; 164 border-left: 1px solid #666666; 165 color: #FFFFFF; 166 display: block; 167 float: left; 168 margin: 5px 0; 169 padding: 0.3em 0; 170 text-align: center; 171 text-decoration: none; 172 text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.5); 173 vertical-align: middle; 174 width: 49.6%; 175 text-shadow: 0px -1px 1px rgba(0,0,0,0.5); 176 background-color: #666666; 177 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.25)), to(rgba(0,0,0,0.2)), color-stop(0.5, rgba(255,255,255,0.05)), color-stop(0.51, rgba(0,0,0,0.05))); 178 } 179 180 #block-login .spbtn:first-child{ 181 width: 49.6%; 182 border-left: none; 183 margin-left: 0px; 184 -webkit-border-top-left-radius: 4px; 185 -webkit-border-bottom-left-radius: 4px; 186 } 187 #block-login .spbtn:last-child{ 188 width: 49.6%; 189 -webkit-border-top-right-radius: 4px; 190 -webkit-border-bottom-right-radius: 4px; 191 margin-left:1px 192 } 193 #block-login .spbtn:only-child{ 194 width: 100%; 195 max-width: 100%; 196 -webkit-border-radius: 4px; 197 } 198 #block-login .spbtn > a{ 199 } 200 201 /*ご利用規約はこちら ボタン 202 ------------------------------------------------*/ 203 .kybtn{ 204 background-color: #666666; 205 border-left: 1px solid #666666; 206 color: #FFFFFF; 207 display: block; 208 float: left; 209 margin: 5px 0; 210 padding: 0.3em 0; 211 text-align: center; 212 text-decoration: none; 213 text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.5); 214 vertical-align: middle; 215 width: 100%; 216 font-size: 90%; 217 text-shadow: 0px -1px 1px rgba(0,0,0,0.5); 218 background-color: #666666; 219 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.25)), to(rgba(0,0,0,0.2)), color-stop(0.5, rgba(255,255,255,0.05)), color-stop(0.51, rgba(0,0,0,0.05))); 220 } 221 222 223 /*住所自動入力 ボタン 224 ------------------------------------------------*/ 225 .oubtn{ 226 background-color: #666666; 227 border-left: 1px solid #666666; 228 color: #FFFFFF; 229 display: block; 230 float: left; 231 margin: 5px 0; 232 padding: 0.3em 0; 233 text-align: center; 234 text-decoration: none; 235 text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.5); 236 vertical-align: middle; 237 width: 99%; 238 text-shadow: 0px -1px 1px rgba(0,0,0,0.5); 239 background-color: #666666; 240 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.25)), to(rgba(0,0,0,0.2)), color-stop(0.5, rgba(255,255,255,0.05)), color-stop(0.51, rgba(0,0,0,0.05))); 241 } 242 243 244 /* 「TOPへ」ボタン 245 ----------------------------------------------- */ 246 #btn-top { 247 display:block; 248 position: absolute; 249 top: 4px; 250 right: 0.4em; 251 font: bold 100% helvetica; 252 width: 4.3em; 253 border: 1px solid rgba(0,0,0,0.5); 254 border-top: 1px solid rgba(0,0,0,0.7); 255 background-color: rgba(51,51,51,0.2); 256 background-color: #333332; 257 background-image: -webkit-gradient(linear, 0% 0%, 0% 95%, from(rgba(0,0,0,0.1)), to(rgba(0,0,0,0.01)), color-stop(.02,rgba(255,255,255,0.4)),color-stop(.5,rgba(255,255,255,0.3))); 258 -webkit-box-shadow: 0px 1px 1px rgba(255,255,255,0.3); 259 vertical-align: middle; 260 text-align: center; 261 text-decoration: none; 262 -webkit-border-radius: 5px; 263 } 264 #btn-top > a { 265 display: block; 266 padding-top: 0.3em; 267 padding-bottom: 0.4em; 268 color: #ffffff; 269 font: bold 100% helvetica; 270 text-shadow: 0px -1px 1px rgba(0,0,0,0.5); 271 vertical-align: middle; 272 text-decoration: none; 273 } 274 275 /* ショッピング関連ボタン 276 ----------------------------------------------- */ 277 .spbtn-shopping { 278 background-color: #6dc935; 279 border: 1px solid #666666; 280 color: #FFFFFF; 281 display: block; 282 font: bold 120% helvetica; 283 margin: 0 auto; 284 padding: 7px; 285 text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.5); 286 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.25)), to(rgba(0,0,0,0.2)), color-stop(0.5, rgba(255,255,255,0.05)), color-stop(0.51, rgba(0,0,0,0.05))); 287 -webkit-border-radius: 6px; 288 -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.7); 289 290 /*display: block; 291 margin: 0.5em auto 0.3em; 292 font: bold 100% helvetica; 293 border: solid 1px #666666; 294 text-shadow: 0px -1px 1px rgba(0,0,0,0.5); 295 color: #ffffff; 296 background-color: #fc4743; 297 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.25)), to(rgba(0,0,0,0.2)), color-stop(0.5, rgba(255,255,255,0.05)), color-stop(0.51, rgba(0,0,0,0.05))); 298 -webkit-border-radius: 6px; 299 -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.7);*/ 300 } 301 a.spbtn-shopping { 302 width: 95%; 303 text-decoration:none; 304 margin:0; 305 text-align:center; 306 } 307 input.spbtn-shopping { 308 width: 100%; 309 margin:0; 310 } 311 312 p.addbtn { 313 margin-bottom:20px; 314 } 279 /*----------------------------------------------- 280 ボタン(商品詳細:お気に入り) 281 ----------------------------------------------- */ 282 .btn_favorite .btn_sub{ 283 width:auto; 284 display:block; 285 } 286 /*----------------------------------------------- 287 ボタン(新しいお届け先を追加する) 288 ----------------------------------------------- */ 289 .addbtn{ 290 margin:0 30px; 291 padding:5px 0; 292 } 293 /*----------------------------------------------- 294 ボタン(トップページへ) 295 ----------------------------------------------- */ 296 .btn_s{ 297 width:12em; 298 padding:10px 0!important; 299 margin:10px auto; 300 clear:both; 301 } 302 /*----------------------------------------------- 303 ボタン(住所自動入力) 304 ----------------------------------------------- */ 305 .btn_inputzip{ 306 margin:12px 0 5px 0; 307 } 308 /*----------------------------------------------- 309 ボタン(ログイン/ウィンドウ) 310 ----------------------------------------------- */ 311 .btn_login,.btn_close{ 312 width:70%; 313 margin:10px auto; 314 }
Note: See TracChangeset
for help on using the changeset viewer.