-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathstyle.css
124 lines (108 loc) · 2.14 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
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
123
124
@font-face {
font-family: 'Sobiscuit';
src: url('Sobiscuit.ttf');
}
body {
color: #fff;
font-family: 'Sobiscuit';
background: radial-gradient(circle at center, #FDB1D6 60%, #F9E3CB);
margin: 0;
min-height: 100vh;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
position: relative;
z-index: 1;
}
/* New background cogs styles */
.cog {
position: fixed;
opacity: 0.15;
z-index: 0;
animation: spin linear infinite;
}
.cog:nth-child(odd) {
animation-direction: reverse;
}
@keyframes spin {
100% {
transform: rotate(360deg);
}
}
#lavalamp {
cursor: pointer;
}
#lamp-container {
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
}
h1 {
color: #D63866;
text-shadow: 0 0 10px #F9E3CB,
0 0 20px #F9E3CB,
0 0 30px #F9E3CB,
0 0 40px #F9E3CB,
0 0 70px #F9E3CB,
0 0 80px #F9E3CB;
-webkit-text-stroke: 0.25px #742F47;
-webkit-text-fill-color: #D63866;
text-align: center;
font-size: 80px;
}
/* Heart background styles */
.heart {
position: fixed;
opacity: 0.15;
z-index: 0;
fill: #D63866;
animation: float 20s ease-in-out infinite;
}
@keyframes float {
0%, 100% {
transform: translateY(0) rotate(0deg);
}
50% {
transform: translateY(-20px) rotate(5deg);
}
}
/* Star styles */
.star {
position: fixed;
opacity: 0.2;
z-index: 0;
animation: twinkle 3s ease-in-out infinite;
}
/* Different colored stars */
.star:nth-child(3n) {
fill: #FFB6C1; /* Light pink */
animation-delay: -0.75s;
}
.star:nth-child(3n+1) {
fill: #87CEEB; /* Sky blue */
animation-delay: -1.5s;
}
.star:nth-child(3n+2) {
fill: #DDA0DD; /* Plum */
animation-delay: -2.25s;
}
@keyframes twinkle {
0%, 100% {
opacity: 0.2;
transform: scale(1);
}
50% {
opacity: 0.4;
transform: scale(1.2);
}
}