Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
bgoonz authored Mar 7, 2022
1 parent 9afcb80 commit b3972f1
Show file tree
Hide file tree
Showing 19 changed files with 1,994 additions and 1,595 deletions.
26 changes: 14 additions & 12 deletions src/sass/imports/_animations.scss
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;
}
}
146 changes: 76 additions & 70 deletions src/sass/imports/_buttons.scss
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;
}
}
Loading

2 comments on commit b3972f1

@vercel
Copy link

@vercel vercel bot commented on b3972f1 Mar 7, 2022

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:

Resource is limited - try again in 8 hours (more than 100, code: "api-deployments-free-per-day").

@vercel
Copy link

@vercel vercel bot commented on b3972f1 Mar 7, 2022

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:

Resource is limited - try again in 6 hours (more than 100, code: "api-deployments-free-per-day").

Please sign in to comment.