18 lines
261 B
CSS
18 lines
261 B
CSS
|
.soft-btn {
|
||
|
background-color:gray;
|
||
|
border: none;
|
||
|
color: white;
|
||
|
padding: 1em 2em ;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.dot {
|
||
|
position: absolute;
|
||
|
pointer-events: none;
|
||
|
height: 50px;
|
||
|
width: 50px;
|
||
|
border-radius: 25px;
|
||
|
background-color: #bbb;
|
||
|
}
|
||
|
|