-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheaster.css
More file actions
50 lines (50 loc) · 1 KB
/
Copy patheaster.css
File metadata and controls
50 lines (50 loc) · 1 KB
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
body {
background-color: #f8e8ff;
font-family: Arial, sans-serif;
text-align: center;
}
.egg {
display: inline-block;
width: 100px;
height: 130px;
background: linear-gradient(45deg, #8B0000, #B22222);
border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
margin: 10px;
cursor: pointer;
transition: transform 0.3s;
}
.blue-egg {
background-color: #2498db;
}
.green-egg {
background-color: #2ecc71;
}
.yellow-egg {
background-color: #f1c40f;
}
.purple-egg {
background-color: #9b59b6;
}
.egg:hover {
transform: scale(1.1);
}
#secretBunny {
display: none;
position: fixed;
bottom: 20px;
right: 20px;
font-size: 50px;
}
.hidden-basket {
color: transparent;
user-select: none;
}
.hidden-basket:hover {
color: #ff6b6b;
}
.rainbow-egg {
background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
}
.rainbow-bg {
background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
}