-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (110 loc) · 2.43 KB
/
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
body {
height: 1080px;
width: 1920px;
background-color: teal;
padding: 0;
margin: 0;
/* position: fixed; */
/* overflow: hidden; */
overflow-y: hidden;
/* background-image: url("./images/Sky.png"); */
}
#wrapper {
display: flex;
height: 1080px;
width: 1920px;
justify-content: center;
align-items: center;
flex-direction: column;
}
#assetWrap {
height: 1080px;
width: 1920px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
position: absolute;
}
#layer1 {
background-image: url('./images/BG_Decor.png');
height: 1080px;
width: 1920px;
position: absolute;
}
#layer2 {
background-image: url('./images/Middle_Decor.png');
height: 1080px;
width: 1920px;
position: absolute;
}
#layer3 {
background-image: url('./images/Foreground.png');
height: 1080px;
width: 1920px;
position: absolute;
}
#layer4 {
background-image: url('./images/Ground.png');
height: 1080px;
width: 1920px;
position: absolute;
}
#playerContainer {
height: 1080px;
width: 1920px;
background-color:transparent;
position: absolute;
display: flex;
flex-direction: column;
justify-content: flex-end;
}
#player {
display: flex;
align-items: flex-end;
height: 500px;
display: flex;
position: relative;
bottom: 0px;
/* background-color: yellowgreen; */
}
#machine {
position: absolute;
float: right;
right: 300px;
background-color: transparent;
bottom: 150px;
/* background-image: url("./images/idlerobot.gif"); */
}
#portalWrap {
position: absolute;
display: flex;
align-self: flex-end;
justify-self: center;
}
#consoleWrap {
background-color: transparent;
display: flex;
position: relative;
width: 70%;
right: 100px;
height: 50%;
/* background-color: whitesmoke; */
}
#consoleMain {
left: 40%;
position: fixed;
text-align: center;
background-color: rgba(0, 128, 128, 0.829);
border-color: darkgoldenrod;
border-style: solid;
perspective: 300px;
border-radius: 40px;
padding: 10px;
width: 20%;
box-shadow: 5px 7px 1px 1px rgba(63, 63, 62, 0.267), inset 2px 2px 2px 2px rgba(184, 135, 11, 0.568);
}
img {
padding: 0;
height: 0;
}