-
Notifications
You must be signed in to change notification settings - Fork 0
/
ElysianEngine.css
165 lines (146 loc) · 3.47 KB
/
ElysianEngine.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*
* Copyright(c) A.K.A Elysian GalGame Scripting Engine
* WMProject1217 Studios 2024
* Version: 1.5.2
* FileName: ElysianEngine.css
* Author: WMProject1217
* LatestCommit: 2024-9-15
*/
.ElysianEngine_Container {
user-select: none;
border: none;
padding: 0;
margin: 0;
z-index: 1800;
}
.ElysianEngine_Container .status0 {
opacity: 0;
}
.ElysianEngine_Container .status1 {
opacity: 1;
transition-property: opacity;
transition-duration: .3s;
}
.ElysianEngine_Container .status2 {
opacity: 0;
transition-property: opacity;
transition-duration: .3s;
}
.ElysianEngine_Container .status3 {
opacity: 1;
}
.ElysianEngine_Container .canvas {
position: fixed;
z-index: 1800;
}
.ElysianEngine_Container .canvas.noresize {
top: 0px;
left: 0px;
}
.ElysianEngine_Container .canvas.stretch {
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;
height: 100vh;
width: 100vw;
}
.ElysianEngine_Container .canvas.fitheight {
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;
height: 100vh;
width: 177.77vh;
}
.ElysianEngine_Container .canvas.fitwidth {
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;
height: 56.25vw;
width: 100vw;
}
.ElysianEngine_Container .talkbox {
position: fixed;
bottom: 0px;
left: 0px;
height: 25vh;
width: 100vw;
background-color: rgba(0, 0, 0, .38);
z-index: 1804;
}
.ElysianEngine_Container .talkbox .name {
font-family: "Microsoft YaHei UI";
width: 100vw;
margin-top: 10px;
margin-bottom: 10px;
font-size: 3.3vh;
text-align: center;
font-weight: bold;
color: rgb(252, 224, 88);
text-shadow: 1px 1px 1px rgb(150, 127, 53);
}
.ElysianEngine_Container .talkbox .line {
width: 100vw;
height: 2px;
background-color: rgba(255, 255, 255, .1);
}
.ElysianEngine_Container .talkbox .data {
font-family: "Microsoft YaHei UI";
width: 80vw;
margin-left: 10vw;
margin-top: 8px;
font-size: 2.9vh;
text-align: left;
font-weight: bold;
color: rgb(233, 222, 226);
text-shadow: 1px 1px 1px rgb(125, 107, 125);
}
.ElysianEngine_Container .operatecatch {
position: fixed;
top: 0px;
left: 0px;
height: 100vh;
width: 100vw;
z-index: 1809;
}
.ElysianEngine_Container .choosebox {
position: fixed;
bottom: 25vh;
right: 0px;
height: auto;
width: min-content;
z-index: 1811;
}
.ElysianEngine_Container .choosebox .item {
font-family: "印品鸿蒙体";
display: block;
cursor: pointer;
border: 2px solid #AFAFAF;
background-color: rgba(0, 0, 0, .38);
color: #FFFFFF;
outline: 0;
min-height: 5.4vh;
width: 34vw;
margin: 1vh;
padding: 0.5vh 0.5vh 0.5vh 2vh;
text-align: left;
font-size: 3vh;
float: left;
transition-property: background-color, border, color, box-shadow;
transition-duration: .3s;
text-shadow: 1px 1px 8px rgba(0, 0, 0, .15);
}
.ElysianEngine_Container .choosebox .item:hover:enabled {
background-color: #FFFFFF;
border: 2px solid #9F9F9F;
color: #000000;
box-shadow: 1px 1px 30px rgba(0, 0, 0, .15), 0 6px 15px rgba(36, 37, 38, .15), inset 5px 5px 15px transparent;
}
.ElysianEngine_Container .choosebox .item:active:enabled {
background-color: #D9D9D9;
}