/* ボディ */ body { /* 一般的な表示部 */ margin: 0 ; padding: 0 ; font-size: 20px ; line-height: 3 ; } input { /* チェックボックス */ width: 25px; height: 25px; -moz-transform: scale(1.4); -webkit-transform: scale(1.4); transform: scale(1.4); } select { /* プルダウンメニュー */ font-size: 30px ; } .hrline { /* 罫線(?) */ border: none; background-color: #fff; border-width: 1px 0 0 0; border-top: double; border-color: black; } .submit { /* 送信ボタン */ width: 100px; height: 40px; -moz-transform: scale(1.4); -webkit-transform: scale(1.4); transform: scale(1.4); } .red { /* 設定変更した */ font-size: 40px ; color: #ff0000; } /* スマホだけに適用するCSS */ @media screen and ( max-width:479px ) { body { /* 一般的な表示部 */ font-size: 20px ; } input { /* チェックボックス */ width: 25px; height: 25px; -moz-transform: scale(1.4); -webkit-transform: scale(1.4); transform: scale(1.4); } select { /* プルダウンメニュー */ font-size: 25px ; } .hrline { /* 罫線(?) */ border: none; background-color: #fff; border-width: 1px 0 0 0; border-top: double; border-color: black; } .submit { /* 送信ボタン */ width: 100px; height: 40px; -moz-transform: scale(1.4); -webkit-transform: scale(1.4); transform: scale(1.4); } .red { /* 設定変更した */ font-size: 40px ; color: #ff0000; } }