forked from oyd/ozgurkon-2021-site
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.
27 lines
513 B
27 lines
513 B
6 years ago
|
button, a.btn, span.btn {
|
||
|
border: thin solid var(--darken-2);
|
||
|
background: var(--darken-1);
|
||
|
padding: var(--space-3);
|
||
|
color: inherit;
|
||
|
text-transform: uppercase;
|
||
|
text-decoration: none;
|
||
|
font-size: .875rem;
|
||
|
font-weight: 100;
|
||
|
cursor: pointer;
|
||
|
|
||
|
&.primary {
|
||
|
background-color: var(--primary);
|
||
|
color: var(--primary-txt);
|
||
|
text-shadow: var(--extruded);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
form:invalid button,
|
||
|
button[aria-disabled],
|
||
|
a.btn[aria-disabled],
|
||
|
span.btn[aria-disabled] {
|
||
|
opacity: .5;
|
||
|
cursor: not-allowed;
|
||
|
}
|