23.03.2020, 07:48
(This post was last modified: 23.03.2020, 07:50 by Trond Hoyem.)
(23.03.2020, 07:39)admin Wrote: Border color can be changed like this:
Code:.control-spinner .btn {
background-color: #f90;
background-image: none;
border-color: #f0f;
}
.control-spinner input {
border-color: #f0f;
}
The whole visualization is just HTML/CSS/JS. Any tutorial on basic web front-end development can be applied here.
I have tried to add some adjustments of corner radius to the code you provided.
.control-spinner .btn {
background-color: #f90;
background-image: none;
border-color: #000;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
The parameters for the radius is then striked thru in the inspector. Any idea why that is?
There are 10 kinds of people in the world; those who can read binary and those who don't