jekyll-sleek 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,30 +0,0 @@
1
- .to-top {
2
- position: fixed;
3
- display: block;
4
- text-align: center;
5
- right: 15px;
6
- bottom: 0;
7
- cursor: pointer;
8
- height: 35px;
9
- width: 35px;
10
- background-color: rgba(103, 103, 103, 0.65);
11
- z-index: 2;
12
- transform: translate3d(0, 60px, 0);
13
- transition: all 0.3s ease;
14
-
15
- @include breakpoint($md) {
16
- right: 1.8em;
17
- }
18
-
19
- &.js-show {
20
- transform: translate3d(0, -15px, 0);
21
-
22
- @include breakpoint($md) {
23
- transform: translate3d(0, -28px, 0);
24
- }
25
- }
26
-
27
- &:hover {
28
- background-color: rgba(103, 103, 103, 0.80);
29
- }
30
- }
@@ -1,37 +0,0 @@
1
- .zoom {
2
-
3
- &:hover {
4
- .post-card__thumb::after {
5
- opacity: 0.2;
6
- }
7
-
8
- img {
9
- transform: scale(1.1);
10
-
11
- }
12
- }
13
-
14
- &::after {
15
- position: absolute;
16
- display: block;
17
- content: "";
18
- top: 0;
19
- left: 0;
20
- width: 100%;
21
- height: 100%;
22
- background: rgba(255, 255, 255, 1);
23
- opacity: 0;
24
- transition: all 0.4s cubic-bezier(.15,.75,.5,1) 0s;
25
- // transition: opacity 1s cubic-bezier(0, 1, 0.5, 1);
26
- z-index: 2;
27
-
28
-
29
-
30
- // transition: all 0.4s cubic-bezier(.15, .75, .5, 1) 0s;
31
- }
32
-
33
- img {
34
- position: relative;
35
- transition: transform 1s cubic-bezier(0, 1, 0.5, 1);
36
- }
37
- }