File size: 604 Bytes
0c4cce1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.stop-generating {
	position: absolute;
	bottom: 128px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000000;
}

.stop-generating button {
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	background-color: var(--blur-bg);
	color: var(--colour-3);
	cursor: pointer;
	animation: show_popup 0.4s;
}

@keyframes show_popup {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
}

@keyframes hide_popup {
	to {
		opacity: 0;
		transform: translateY(10px);
	}
}

.stop-generating-hiding button {
	animation: hide_popup 0.4s;
}

.stop-generating-hidden button {
	display: none;
}