Skip to content

Commit

Permalink
🚀 RELEASE: build latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
warengonzaga committed Mar 12, 2021
1 parent 3d319c8 commit afe1ac6
Show file tree
Hide file tree
Showing 7 changed files with 70 additions and 31 deletions.
6 changes: 3 additions & 3 deletions demo/assets/css/fork-corner.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions demo/assets/js/fork-corner.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*!
* Fork Corner - https://fork-corner.warengonzaga.com
* A modern and global open source fork corner label for your project's landing page.
* Version: 1.0.1
* Version: 1.1.0
* Github: https://github.com/WarenGonzaga/fork-corner
* Licensed Under The MIT License: http://opensource.org/licenses/MIT
* Copyright (c) 2020 Waren Gonzaga
* Copyright (c) 2021 Waren Gonzaga
*
* Facebook: @warengonzagaofficial
* Twitter: @warengonzaga
Expand Down
4 changes: 2 additions & 2 deletions demo/assets/js/fork-corner.min.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*!
* Fork Corner - https://fork-corner.warengonzaga.com
* A modern and global open source fork corner label for your project's landing page.
* Version: 1.0.1
* Version: 1.1.0
* Github: https://github.com/WarenGonzaga/fork-corner
* Licensed Under The MIT License: http://opensource.org/licenses/MIT
* Copyright (c) 2020 Waren Gonzaga
* Copyright (c) 2021 Waren Gonzaga
*
* Facebook: @warengonzagaofficial
* Twitter: @warengonzaga
Expand Down
73 changes: 56 additions & 17 deletions dist/fork-corner.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*!
* Fork Corner - https://fork-corner.warengonzaga.com
* A modern and global open source fork corner label for your project's landing page.
* Version: 1.0.1
* Version: 1.1.0
* Github: https://github.com/WarenGonzaga/fork-corner
* Licensed Under The MIT License: http://opensource.org/licenses/MIT
* Copyright (c) 2020 Waren Gonzaga
* Copyright (c) 2021 Waren Gonzaga
*
* Facebook: @warengonzagaofficial
* Twitter: @warengonzaga
Expand All @@ -21,9 +21,14 @@ body {
margin: 0; }

#fork-corner {
z-index: 105;
position: absolute; }
z-index: 105; }

.fork-corner + div {
width: 200px;
height: 200px;
z-index: 100; }

/** fork corner sizes **/
.fork-corner.fc-size-small.fc-pos-tr {
top: 12.5px;
right: 12.5px; }
Expand Down Expand Up @@ -138,15 +143,11 @@ body {
width: 300px;
height: 300px; }

.fork-corner + div {
position: absolute;
width: 200px;
height: 200px;
z-index: 100; }

/** fork corner positions and behavior **/
.fork-corner.fc-pos-tr {
top: 16.66667px;
right: 16.66667px; }
right: 16.66667px;
position: absolute; }
.fork-corner.fc-pos-tr.fc-animate-default {
transition: 0.5s; }
.fork-corner.fc-pos-tr.fc-animate-default:hover {
Expand All @@ -156,25 +157,59 @@ body {
.fork-corner.fc-pos-tr + div {
top: -100px;
right: -100px;
transform: rotate(45deg); }
transform: rotate(45deg);
position: absolute; }

.fork-corner.fc-pos-tr-sticky {
top: 16.66667px;
right: 16.66667px;
position: fixed; }
.fork-corner.fc-pos-tr-sticky.fc-animate-default {
transition: 0.5s; }
.fork-corner.fc-pos-tr-sticky.fc-animate-default:hover {
transform: rotate(45deg);
transition: 0.5s; }

.fork-corner.fc-pos-tr-sticky + div {
top: -100px;
right: -100px;
transform: rotate(45deg);
position: fixed; }

.fork-corner.fc-pos-tl {
top: 16.66667px;
left: 16.66667px; }
left: 16.66667px;
position: absolute; }
.fork-corner.fc-pos-tl.fc-animate-default {
transition: 0.5s; }
.fork-corner.fc-pos-tl.fc-animate-default:hover {
transform: rotate(-45deg);
transition: 0.5s; }

.fork-corner.fc-pos-tl + div {
top: -100px;
left: -100px;
transform: rotate(45deg);
position: absolute; }

.fork-corner.fc-pos-tl-sticky {
top: 16.66667px;
left: 16.66667px; }
.fork-corner.fc-pos-tl-sticky.fc-animate-default {
transition: 0.5s; }
.fork-corner.fc-pos-tl-sticky.fc-animate-default:hover {
transform: rotate(-45deg);
transition: 0.5s; }

.fork-corner.fc-pos-tl-sticky + div {
top: -100px;
left: -100px;
transform: rotate(45deg); }

.fork-corner.fc-pos-br {
bottom: 16.66667px;
right: 16.66667px; }
right: 16.66667px;
position: fixed; }
.fork-corner.fc-pos-br.fc-animate-default {
transition: 0.5s; }
.fork-corner.fc-pos-br.fc-animate-default:hover {
Expand All @@ -184,11 +219,13 @@ body {
.fork-corner.fc-pos-br + div {
bottom: -100px;
right: -100px;
transform: rotate(45deg); }
transform: rotate(45deg);
position: fixed; }

.fork-corner.fc-pos-bl {
bottom: 16.66667px;
left: 16.66667px; }
left: 16.66667px;
position: fixed; }
.fork-corner.fc-pos-bl.fc-animate-default {
transition: 0.5s; }
.fork-corner.fc-pos-bl.fc-animate-default:hover {
Expand All @@ -198,8 +235,10 @@ body {
.fork-corner.fc-pos-bl + div {
bottom: -100px;
left: -100px;
transform: rotate(45deg); }
transform: rotate(45deg);
position: fixed; }

/** fork corner themes **/
.fork-corner.fc-theme-default {
text-decoration: none; }
.fork-corner.fc-theme-default > i {
Expand Down
4 changes: 2 additions & 2 deletions dist/fork-corner.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*!
* Fork Corner - https://fork-corner.warengonzaga.com
* A modern and global open source fork corner label for your project's landing page.
* Version: 1.0.1
* Version: 1.1.0
* Github: https://github.com/WarenGonzaga/fork-corner
* Licensed Under The MIT License: http://opensource.org/licenses/MIT
* Copyright (c) 2020 Waren Gonzaga
* Copyright (c) 2021 Waren Gonzaga
*
* Facebook: @warengonzagaofficial
* Twitter: @warengonzaga
Expand Down
Loading

0 comments on commit afe1ac6

Please sign in to comment.