Skip to content
Snippets Groups Projects
Commit f6e8fb80 authored by mimarti's avatar mimarti
Browse files

Subir nuevo archivo

parent 835a19e6
Branches
No related tags found
No related merge requests found
/* The container */
.container2 {
display: block;
position: relative;
margin-bottom: 12px;
cursor: pointer;
font-size: 17px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* Hide the browser's default radio button */
.container2 input {
position: absolute;
opacity: 0;
cursor: pointer;
}
/* Create a custom radio button */
.checkmark2 {
position: absolute;
top: 0;
left: 140px;
height: 25px;
width: 25px;
background-color: #eee;
border-radius: 50%;
}
/* On mouse-over, add a grey background color */
.container2:hover input ~ .checkmark2 {
background-color: #ccc;
}
/* When the radio button is checked, add a blue background */
.container2 input:checked ~ .checkmark2 {
background-color: #2196F3;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark2:after {
content: "";
position: absolute;
display: none;
}
/* Show the indicator (dot/circle) when checked */
.container2 input:checked ~ .checkmark2:after {
display: block;
}
/* Style the indicator (dot/circle) */
.container2 .checkmark2:after {
top: 9px;
left: 10px;
width: 8px;
height: 8px;
border-radius: 50%;
background: white;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment