-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
1,994 additions
and
1,595 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
@-webkit-keyframes fadeIn20 { | ||
0% { | ||
opacity: 0; | ||
} | ||
100% { | ||
opacity: 0.3; | ||
} | ||
0% { | ||
opacity: 0; | ||
} | ||
|
||
100% { | ||
opacity: 0.2; | ||
} | ||
} | ||
@keyframes fadeIn20 { | ||
0% { | ||
opacity: 0; | ||
} | ||
100% { | ||
opacity: 0.3; | ||
} | ||
0% { | ||
opacity: 0; | ||
} | ||
|
||
100% { | ||
opacity: 0.2; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,89 +1,95 @@ | ||
.button { | ||
-ms-flex-align: center; | ||
align-items: center; | ||
background: #000000; | ||
border: 0; | ||
border-radius: 1.75em; | ||
box-shadow: none; | ||
box-sizing: border-box; | ||
color: #ffffff; | ||
cursor: pointer; | ||
display: -ms-inline-flexbox; | ||
display: inline-flex; | ||
font-size: 0.875em; | ||
font-weight: bold; | ||
-ms-flex-pack: center; | ||
justify-content: center; | ||
letter-spacing: 0.035em; | ||
line-height: 1.2; | ||
opacity: 1; | ||
padding: 0.9em 2.14285em; | ||
text-decoration: none; | ||
-webkit-transition: 0.3s ease; | ||
transition: 0.3s ease; | ||
vertical-align: middle; | ||
-ms-flex-align: center; | ||
align-items: center; | ||
background: $color-primary; | ||
border: 0; | ||
border-radius: 1.95em; | ||
box-shadow: none; | ||
box-sizing: border-box; | ||
color: #fff; | ||
cursor: pointer; | ||
display: -ms-inline-flexbox; | ||
display: inline-flex; | ||
font-size: 1em; | ||
font-weight: bold; | ||
-ms-flex-pack: center; | ||
justify-content: center; | ||
letter-spacing: 0.035em; | ||
line-height: 1.6; | ||
opacity: 1; | ||
padding: 1.2em 2.14285em; | ||
text-decoration: none; | ||
-webkit-transition: 0.3s ease; | ||
transition: 0.3s ease; | ||
vertical-align: middle; | ||
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), | ||
0 0 40px rgba(0, 0, 0, 0.1) inset; | ||
-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), | ||
0 0 40px rgba(0, 0, 0, 0.1) inset; | ||
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), | ||
0 0 40px rgba(0, 0, 0, 0.1) inset; | ||
|
||
&:hover, | ||
&:focus, | ||
&:active { | ||
color: #fff; | ||
opacity: 0.8; | ||
outline: 0; | ||
} | ||
&:hover, | ||
&:focus, | ||
&:active { | ||
color: #fff; | ||
opacity: 0.8; | ||
outline: 0; | ||
} | ||
} | ||
|
||
.button-secondary { | ||
background: 0 !important; | ||
box-shadow: inset 0 0 0 2px currentColor; | ||
color: $color-primary; | ||
background: 0 !important; | ||
box-shadow: inset 0 0 0 3px currentColor; | ||
color: $color-primary; | ||
|
||
&:hover, | ||
&:focus, | ||
&:active { | ||
box-shadow: inset 0 0 0 3px currentColor; | ||
color: $color-primary; | ||
opacity: 1; | ||
} | ||
&:hover, | ||
&:focus, | ||
&:active { | ||
box-shadow: inset 0 0 0 4px currentColor; | ||
color: $color-primary; | ||
opacity: 1; | ||
} | ||
} | ||
|
||
.button-icon { | ||
background: 0 !important; | ||
border: 0; | ||
color: inherit; | ||
font-size: 1em; | ||
font-weight: normal; | ||
letter-spacing: normal; | ||
padding: 0.25em; | ||
background: 0 !important; | ||
border: 0; | ||
color: black; | ||
font-size: 1.2em; | ||
font-weight: normal; | ||
letter-spacing: normal; | ||
padding: 0.25em; | ||
|
||
&:hover, | ||
&:focus, | ||
&:active { | ||
color: #000000; | ||
opacity: 1; | ||
} | ||
&:hover, | ||
&:focus, | ||
&:active { | ||
color: $color-primary; | ||
opacity: 1; | ||
} | ||
} | ||
|
||
#menu-open, | ||
#menu-close, | ||
.docs-nav .docs-nav-toggle, | ||
.docs-nav .docs-submenu-toggle, | ||
.submenu-toggle { | ||
background: 0; | ||
border: 0; | ||
border-radius: 0; | ||
box-shadow: none; | ||
color: inherit; | ||
cursor: pointer; | ||
display: block; | ||
font-size: inherit; | ||
height: 30px; | ||
padding: 0; | ||
position: relative; | ||
width: 30px; | ||
background: 0; | ||
border: 0; | ||
border-radius: 0; | ||
box-shadow: none; | ||
color: inherit; | ||
cursor: pointer; | ||
display: block; | ||
font-size: inherit; | ||
height: 30px; | ||
padding: 0; | ||
position: relative; | ||
width: 30px; | ||
|
||
&:hover, | ||
&:focus, | ||
&:active { | ||
outline: 0; | ||
} | ||
&:hover, | ||
&:focus, | ||
&:active { | ||
outline: 0; | ||
} | ||
} |
Oops, something went wrong.
b3972f1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deployment failed with the following error:
b3972f1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deployment failed with the following error: