-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroom711.css
58 lines (44 loc) · 825 Bytes
/
room711.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
body {
font-family: Arial, sans-serif;
background-color: #000;
color: #fff;
text-align: center;
}
#scary-container {
margin-top: 20px;
}
#hauntedHouse {
max-width: 100%;
height: auto;
margin-bottom: 10px;
}
/* Add this to your existing CSS */
button {
padding: 10px;
transition: transform 0.5s ease-in-out;
color:white;
background-color: black;
}
button.moving {
transform: translateX(100px); /* Adjust the distance as needed */
}
/* new */
/* Add this to your existing CSS */
body {
transition: background-color 2.5s ease-in-out;
}
.flashing {
animation: flashBW 0.5s alternate infinite;
}
@keyframes flashBW {
0% {
filter: grayscale(0);
}
100% {
filter: grayscale(1);
}
}
img {
width:500px;
align-items: center;
}