This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .button { | |
| display: inline-block; | |
| text-decoration: none; | |
| color: #fff; | |
| font-weight: bold; | |
| background-color: #538fbe; | |
| padding: 20px 70px; | |
| font-size: 24px; | |
| border: 1px solid #2d6898; | |
| background-image: linear-gradient(bottom, rgb(73,132,180) 0%, rgb(97,155,203) 100%); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| input[type="radio"] { | |
| position: relative; | |
| -webkit-appearance: button; | |
| appearance: button; | |
| -webkit-box-sizing: border-box; | |
| box-sizing: border-box; | |
| width: 24px; | |
| height: 24px; | |
| content: ""; | |
| background-color: #FFFFFF; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <a href="http://line.naver.jp/R/msg/text/?LINE%E3%81%A7%E9%80%81%E3%82%8B%0D%0Ahttp%3A%2F%2Fline.naver.jp%2F" target="_blank"><img src="[ボタン画像のURL]" width="[ボタン幅]" height="[ボタン高さ]" alt="LINEで送る" /></a> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <input type=”text” pattern=”[0-9]*”> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| background-color: #000; | |
| filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bbb', endColorstr='#000'); | |
| background-image: -webkit-gradient(linear, left top, left bottom, from(#bbb), to(#000)); | |
| /* | |
| Google Chrome 4.0~9.0 | |
| Safari 4.0~5.0 | |
| iOS Safari 4.0.4~5.0 (iOS 3.2~4.2.1) | |
| Android 2.1~3.0 */ | |
| background-image: -webkit-linear-gradient(top, #bbb, #000); | |
| /* |