radio button custom css codepen

Solutions on MaxInterview for radio button custom css codepen by the best coders in the world

showing results for - "radio button custom css codepen"
Lucia
05 Jan 2019
1/* go to codepen for the html of this css doc: https://codepen.io/mkx_Yasin/pen/PojYZqp */
2
3
4#radiobuttonex{
5  border: 2px solid rgb(255,1,199);
6  text-align: center;
7  font-family: sans serif;
8  width: 305px;
9  background: rgb(50,50,100);
10  border-radius: 40px;
11}
12
13label{
14  font-size: 20px;
15  color: gray;
16}
17
18label:hover{
19  color: lime;
20  padding: 5px;
21}
22