-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
60 lines (53 loc) · 831 Bytes
/
style.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
52
53
54
55
56
57
58
59
60
* {
font-family: "Modern No. 20";
transition-duration: 1s;
}
body {
background-color: black;
overflow: hidden;
}
#select {
position: fixed;
width: 27%;
left: 0;
top: 0;
}
#emulator {
z-index: 10;
position: fixed;
border-radius: initial;
image-rendering: crisp-edges;
right: 0;
top: 0;
margin: auto;
}
iframe {
width: 100%;
height: 100%;
}
#slider {
z-index: 20;
width: 70%;
position: fixed;
right: 0;
bottom: 0;
}
#chatframe {
position: fixed;
border: none;
border-radius: initial;
left: 0;
bottom: 0;
width: 27%;
height: 75%;
transform: translateY(100%);
}
#chatbutton {
position: fixed;
border: none;
background-color: blue;
left: 0;
top: 50px;
width: 50px;
height: 50px;
}