pressbooks aldine theme the theme used for the front page or default book
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

69 lines
1.1 KiB

.button {
display: inline-block;
width: 250px;
height: 60px;
margin-top: 2em;
padding: 1.25em;
border: 2px solid $brand-primary;
border-radius: 3px;
background: $brand-primary;
font-family: $font-family-sans-serif;
font-size: em(16);
font-weight: 600;
color: $white;
letter-spacing: 2px;
text-align: center;
text-decoration: none;
text-transform: uppercase;
transition: all 0.5s;
&:hover,
&:focus {
background: $white;
color: $brand-primary;
}
&.button-wide {
width: 305px;
}
&.button-outline {
background: $white;
color: $brand-primary;
&:hover,
&:focus {
background: $brand-primary;
color: $white;
}
}
&.button-secondary {
border: 2px solid $brand-secondary;
background: $brand-secondary;
color: $white;
&:hover,
&:focus {
background: $white;
color: $brand-secondary;
}
&.button-outline {
background: $white;
color: $brand-secondary;
&:hover,
&:focus {
background: $brand-secondary;
color: $white;
}
}
}
}
@media (min-width: $medium) {
.button {
width: 275px;
}
}