44 lines
873 B
CSS
44 lines
873 B
CSS
.button {
|
|
background-color: #02838e;
|
|
color: #fff;
|
|
padding: 5px 15px;
|
|
display: inline-block;
|
|
line-height: 20px;
|
|
border: 1px solid transparent;
|
|
border-radius: 50px;
|
|
height: 32px;
|
|
line-height: 20px;
|
|
font-size: 14px;
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
.button:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.button:focus,
|
|
.button:active {
|
|
box-shadow: 0 0 1px 2px #b4defa;
|
|
outline: none;
|
|
border: 1px solid hsl(0, 0%, 80%);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.button {
|
|
/* font-weight: 600;
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
height: auto;
|
|
padding: 12px 32px; */
|
|
display: none;
|
|
}
|
|
}
|