-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (49 loc) · 1.2 KB
/
style.css
File metadata and controls
56 lines (49 loc) · 1.2 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
51
52
53
54
55
56
body, html {
margin: 0;
padding: 0;
overflow: hidden;
height: 100%;
}
#interactive-bg {
position: absolute; /* Use absolute positioning to allow it to be placed correctly */
height: 80%;
width: 70%;
z-index: 3; /* Set the z-index lower to ensure it's behind the container */
}
.container {
background-color: #7DE2D1;
height: 100%;
width: 100%;
overflow: hidden; /* Hide overflow for any bubbles that go outside */
z-index: 2; /* Set z-index higher to place it above the canvas */
}
/* Common styling for all corner divs */
.corner-div {
position: fixed;
left: 0;
bottom: 0;
transform-origin: bottom left; /* Set the origin to the bottom-left corner */
background-color: #CEF9F2;
border-radius: 10px;
opacity: 0.8; /* Optional: for layering transparency */
}
/* Different sizes for each div */
.scale-1 {
width: 50px;
height: 50px;
}
.scale-2 {
width: 100px;
height: 100px;
background-color: #B2E7D9;
}
.scale-3 {
width: 150px;
height: 150px;
background-color: #8FD7C1;
}
.scale-4 {
width: 200px;
height: 200px;
background-color: #6FCFB0;
}