-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.scss
72 lines (64 loc) · 1.1 KB
/
main.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
66
67
68
69
70
71
72
body {
padding-top: 5%;
background-color: #F1F2F3;
}
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import "variables.scss"
@import "animations.scss"
@import "placeholders.scss"
@mixin %slide-left{
animation: slide-left 5s;
-webkit-animation: slide-left 5s;
}
.slide-left {
position: relative;
left: 50%;
@extend slide-left;
}
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
$slogan-font: 'Open Sans', sans-serif;
$slogan-spacing: 0.183em;
$blue: #204056;
h3 {
color: $blue;
font-family: $slogan-font;
font-weight: 600;
font-size: 18px;
text-transform: uppercase;
letter-spacing: $slogan-spacing;
line-height: 1.4;
position: relative;
padding-top: 2%;
left: -6.3%;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes slide-left {
from {
left: 20%;
}
to {
left: 50%;
}
}
circle {
opacity: 1;
}
.element {
position: absolute;
top: 15%;
left: 46%;
animation-name: appear;
animation-duration: 4s;
}
#sass-logo {
width: 100px;
fill: white;
}
@-webkit-keyframes appear {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}