-
Notifications
You must be signed in to change notification settings - Fork 472
/
Copy pathstyles.css
114 lines (99 loc) · 1.87 KB
/
styles.css
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
@font-face {
font-family: "Open Sans", sans-serif;
font-weight: normal;
font-style: normal;
}
* {
box-sizing: border-box;
}
pre {
white-space: pre-wrap;
font-family: "Open Sans", sans-serif;
font-size: 13px;
line-height: 10px;
margin: 0;
}
.reset {
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
-moz-osx-font-smoothing: grayscale;
-moz-font-feature-settings: "liga" on;
font-family: "Open Sans", sans-serif;
margin: 0 !important;
padding: 0;
}
.zz-border {
position: relative;
}
.zz-border:after {
background-image: url(images/pattern.svg);
content: " ";
display: block;
height: 6px;
width: 100%;
position: absolute;
bottom: 0px;
left: 0;
z-index: 2;
}
.zz-border--reverse:after {
bottom: -6px;
transform: rotate(180deg);
}
.text {
font: 2.5em/1 Rubik;
fill: none;
stroke-width: 2;
stroke-linejoin: round;
stroke-dasharray: 70 330;
stroke-dashoffset: 0;
-webkit-animation: stroke 6s infinite linear;
animation: stroke 6s infinite linear;
}
.text:nth-child(5n + 1) {
stroke: #5438f2;
-webkit-animation-delay: -1.2s;
animation-delay: -1.2s;
}
.text:nth-child(5n + 2) {
stroke: #03b2f5;
-webkit-animation-delay: -2.4s;
animation-delay: -2.4s;
}
.text:nth-child(5n + 3) {
stroke: #4100fe;
-webkit-animation-delay: -3.6s;
animation-delay: -3.6s;
}
.text:nth-child(5n + 4) {
stroke: #34a99e;
-webkit-animation-delay: -4.8s;
animation-delay: -4.8s;
}
.text:nth-child(5n + 5) {
stroke: #3aa1bf;
-webkit-animation-delay: -6s;
animation-delay: -6s;
}
@-webkit-keyframes stroke {
100% {
stroke-dashoffset: -400;
}
}
@keyframes stroke {
100% {
stroke-dashoffset: -400;
}
}
.logo svg {
width: 500px;
height: 150px;
}
#code {
-webkit-mask-image: linear-gradient(
180deg,
#000 30px,
#000 calc(100% - 200px),
transparent calc(100% - 50px)
);
}