-
Notifications
You must be signed in to change notification settings - Fork 5
/
styles.css
51 lines (45 loc) · 896 Bytes
/
styles.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
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
#app {
width: 100%;
height: 100%;
position: relative;
}
#render {
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
overflow: hidden;
}
#glass-circle {
position: absolute;
top: 50%;
right: 20%;
transform: translate(-50%, -50%);
width: 500px;
height: 500px;
background: rgba(0, 0, 0, 0.797);
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 0 20px black;
}
#glass-square {
position: absolute;
top: 50%;
left: 40%;
transform: translate(-50%, -50%);
width: 500px;
height: 500px;
background: rgba(0, 0, 0, 0.797);
border-radius: 5px;
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 0 20px black;
}