-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (65 loc) · 1.09 KB
/
style.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
* {
margin: 0;
padding: 0;
}
@font-face {
font-family: enigma;
src: url(./Cracked-Narrow.ttf);
}
@font-face {
font-family: devilEmoji;
src: url(DevilEmoji.ttf);
}
@font-face {
font-family: folha;
src: url(/Leafs.ttf);
}
canvas {
display: block;
}
body {
background-color: black;
}
.content-wrapper {
display: flex;
flex-direction: column;
}
span{
opacity: 0;
width: max-content;
color: #fff;
font-weight: lighter;
line-height: 100%;
height: max-content;
background: url('http://i106.photobucket.com/albums/m280/YukioKenshin/chopnhay.gif') ;
margin-top: 20px;
font-family: enigma;
align-self: center;
animation: fade-in 8s linear forwards;
}
span:first-child {
animation-delay: 1s;
font-size: 15vw;
}
span:nth-child(){
background-image:
}
span:last-child {
animation-delay: 2s;
font-size: 3vw;
}
@keyframes fade-in {
0% {
opacity: 0;
color:black;
}
70%{
opacity: .6;
color:black;
}
100% {
opacity: 1;
color: #fff;
text-shadow: #00ff00 0px 0px 10px, #00ff00 0px 0px 10px, #00ff00 0px 0px 10px;
}
}