@sorrel340/gatsby-theme-portfolio-minimal
Version:
#### A modern one-page portfolio with a clean yet expressive design.
29 lines (26 loc) • 567 B
CSS
.Button {
display: inline-block;
width: 100%;
height: 100%;
max-width: 15.625rem;
background-color: var(--primary-color);
color: var(--background-color);
padding: 0.8rem 1.5rem;
margin: 0 auto;
font-size: 1rem;
font-weight: 700;
border: none;
border-radius: var(--border-radius);
text-decoration: none;
text-align: center;
}
.Button:hover,
.Button:active {
cursor: pointer;
outline: none;
}
.Button:focus {
outline-color: var(--subtext-color);
outline-style: dotted;
outline-width: 2px;
}