-
Notifications
You must be signed in to change notification settings - Fork 2
/
index_style.css
122 lines (121 loc) · 2.2 KB
/
index_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
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
115
116
117
118
119
120
121
122
/* index.html */
header {
font-family: 'Lilita One', 'VT323', 'Arial Narrow', Arial, sans-serif;
color: #9193ff;
font-size: 144px;
}
.marquee {
position: relative;
width: 100vw; /* full viewport width */
height: 200px;
overflow-x: hidden;
margin-top: 12vh;
}
.track {
position: absolute;
white-space: nowrap;
will-change: transform;
width: 200vw;
animation: marquee 8s linear infinite;
}
@keyframes marquee {
0% { transform: translateX(50%); } /* Start off-screen to the right */
100% { transform: translateX(-100%); } /* End off-screen to the left */
}
h2 {
font-size: small;
}
a.three {
margin-top: -2vh;
}
a.three:hover {
filter: invert(50%);
}
.nav {
font-family: 'Lilita One', 'VT323', 'Arial Narrow', Arial, sans-serif;
text-align: left;
font-size: 50px;
margin: 8px;
}
a {
color:aliceblue;
text-decoration: none;
}
a:hover {
color:#9193ff;
font-style: italic;
text-decoration: blue wavy underline;
}
body {
background: linear-gradient(-45deg, aliceblue, #ffeec6, #96ddea, #91ffd6);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
height: 100vh;
text-align: center;
margin: 0px;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.container {
position: absolute;
top: 50%;
left: 50%;
margin-left: -64.5px;
margin-top: -85.5px;
}
.ghost {
animation: float 3s ease-out infinite;
}
@keyframes float {
50% {
transform: translate(0, 20px);
}
}
.shadowFrame {
width: 130px;
margin-top: 15px;
}
.shadow {
animation: shrink 3s ease-out infinite;
transform-origin: center center;
ellipse {
transform-origin: center center;
}
}
@keyframes shrink {
0% {
width: 60%;
margin: 0 18%;
}
50% {
width: 90%;
margin: 0 5%;
}
100% {
width: 60%;
margin: 0 18%;
}
}
#cursorCircle {
width: 20px;
height: 20px;
fill: black;
background-color:#9193ff;
opacity: 50%;
border-radius: 50%;
position: fixed;
pointer-events: none;
transform: translate(-50%, -50%);
transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
z-index: 9999;
display: none;
}