21 lines
447 B
CSS
21 lines
447 B
CSS
@import url("/main.css");
|
|
|
|
.linkBtn {
|
|
font: 1.3rem 'Source Sans Pro', Arial, sans-serif;
|
|
border: 0.125rem solid #BA6FE8;
|
|
border-radius: 0.6rem;
|
|
padding: 0.75rem 1rem;
|
|
margin: 0.25em 0.15em;
|
|
background-color: #241445;
|
|
color: #BA6FE8;
|
|
cursor: pointer;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.linkBtn:hover {
|
|
cursor:pointer;
|
|
color: white;
|
|
background-color: #BA6FE8;
|
|
transition: 0.5s;
|
|
} |