-
Notifications
You must be signed in to change notification settings - Fork 21
/
back_style.scss
65 lines (64 loc) · 1.2 KB
/
back_style.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
@import "bourbon";
*, *:before, *:after {
box-sizing: border-box;
}
@include keyframes(scrollBad) {
0% {
background-position: 0 0;
}
100% {
background-position: 0 -320px;
}
}
@include keyframes(scrollGood) {
0% {
transform: translate3d(0,0,0);
}
100% {
transform: translate3d(0,-320px,0);
}
}
.pen {
background-color: blue;
position: absolute;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
}
.panel {
padding: 3rem;
height: 50%;
}
.top {
background-color: #3E69C3;
background-image: url(http://scarbroughstudios.com/img/codepen.svg);
background-position: center center;
background-size: 500px;
@include animation(scrollBad 5s linear infinite);
}
.bottom {
background-color: #31CC70;
overflow: hidden;
position: relative;
.scroll {
background-image: url(http://scarbroughstudios.com/img/codepen.svg);
background-position: center center;
background-size: 500px;
position: absolute;
top: 0px;
left: 0px;
height: 400%;
width: 100%;
z-index: 1;
@include animation(scrollGood 5s linear infinite);
}
}
h1 {
color: white;
font-weight: 400;
font-family: sans-serif;
margin: 0;
position: relative;
z-index: 2;
}