Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- input[type=radio] {
- visibility: hidden;
- }
- /**
- * frnakRadio Buttons!
- */
- .frnakRadio {
- width: 24px;
- height: 24px;
- background: #ddd;
- margin: 10px 10px;
- border-radius: 100%;
- position: absolute;
- -webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
- -moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
- box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
- }
- /**
- * Create the checkbox button
- */
- .frnakRadio label {
- display: inline-block;
- width: 18px;
- height: 18px;
- border-radius: 100px;
- -webkit-transition: all .5s ease;
- -moz-transition: all .5s ease;
- -o-transition: all .5s ease;
- -ms-transition: all .5s ease;
- transition: all .5s ease;
- cursor: pointer;
- position: relative;
- top: 3px;
- left: 3px;
- z-index: 1;
- background: #333;
- -webkit-box-shadow:inset 0px 1px 3px rgba(0,0,0,0.5);
- -moz-box-shadow:inset 0px 1px 3px rgba(0,0,0,0.5);
- box-shadow:inset 0px 1px 3px rgba(0,0,0,0.5);
- }
- /**
- * Create the checked state
- */
- .frnakRadio input[type=radio]:checked + label {
- background: #26ca28;
- }
- .checkname
- {
- display: block;
- margin: 10px 35px;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement