44 lines
673 B
CSS
44 lines
673 B
CSS
.uwt-button
|
|
{
|
|
background-color: #fff;
|
|
border: solid 1px #d2d2d2;
|
|
padding: 6px;
|
|
min-width: 80px;
|
|
min-height: 24px;
|
|
text-decoration: none;
|
|
}
|
|
.uwt-button.uwt-color-primary
|
|
{
|
|
background-color: #1ab394;
|
|
border-color: #1ab394;
|
|
color: #fff;
|
|
}
|
|
.uwt-button.uwt-color-primary:hover
|
|
{
|
|
background-color: #18a689;
|
|
border: solid 1px #18a689;
|
|
}
|
|
|
|
.uwt-button.uwt-button-round
|
|
{
|
|
border-radius: 128px;
|
|
width: 64px;
|
|
height: 64px;
|
|
display: inline-block;
|
|
padding: 0px;
|
|
min-width: auto;
|
|
min-height: auto;
|
|
|
|
box-shadow: 0px 8px 8px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
.uwt-button.uwt-button-round > i.fa
|
|
{
|
|
font-size: 20px;
|
|
padding: 22px;
|
|
}
|
|
|
|
.uwt-button > span.uwt-title
|
|
{
|
|
margin-left: 8px;
|
|
} |