Rewrite about page with Vue
This commit is contained in:
@ -1,12 +1,20 @@
|
||||
@import '../vars';
|
||||
|
||||
$button-border-radius: 0.5em;
|
||||
$button-background-color: #405480;
|
||||
|
||||
%button {
|
||||
display: inline-block;
|
||||
color: #fff;
|
||||
background-color: #405480;
|
||||
background-color: $button-background-color;
|
||||
padding: 0.6em 1.2em;
|
||||
border: none;
|
||||
font-size: 100%;
|
||||
font-family: inherit;
|
||||
border-radius: $button-border-radius;
|
||||
cursor: pointer;
|
||||
|
||||
&:hover {
|
||||
background-color: darken($button-background-color, 10%);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user