blob: 3f2f0a7e840823ee2961166d501389f230121ded (
plain)
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
|
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: #1e1e2e;
color: #a6fbb2;
font-family: 'Rubik', sans-serif;
width: 100%;
overflow: hidden;
}
.ii {
width: 20vh;
height: 20vh;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
background-color: #1e1e2e;
border-radius: 2vh;
box-shadow: -12px -12px 28px #27273b73, 12px 12px 20px #12121c73;
}
.container {
height: calc(90dvh - 8dvh);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
width: 100%;
z-index: 100;
}
.wave {
position: absolute;
top: 0;
max-width: 140vw;
max-height: 140vh;
}
.wave1 {
left: 0;
transform: rotate(-45deg) translate(-30%, -80%);
}
.wave2 {
right: 0;
transform: rotate(45deg) translate(50%, -90%);
}
|