blob: d60437aac8d0b23c6a314328a97b4fd5fed3889b (
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
|
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: #1e1e2e;
color: #a6fbb2;
font-family: 'Rubik', sans-serif;
}
.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;
}
|