-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
176 lines (156 loc) · 4.16 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
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
166
167
168
169
170
171
172
173
174
175
176
html,
body {
overflow-x: hidden;
-webkit-user-select: none;
user-select: none;
-webkit-touch-callout: none;
cursor: inherit;
}
body {
background: black;
color: white;
padding: 0;
margin: 0;
width: 100vw;
height: 100vh;
font-family: 'Myriad Set Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
#bottom-text {
border: 2px solid #ffffff;
border-radius: 6px;
color: #fff;
background-color: #161f27;
font-family: inherit;
font-size: inherit;
position: fixed;
bottom: 40px;
left: 50%;
transform: translate(-50%, 50%);
width: 81.5%;
text-align: center;
padding: 5px; /* Reduce the padding to create a 5px gap */
box-sizing: border-box; /* Include the border in the width calculation */
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}
select {
margin-right: 6px;
margin-bottom: 6px;
border: 2px solid #ffffff;
border-radius: 6px;
padding: 10px;
color: #dbdbdb;
background-color: #161f27;
font-family: system-ui, -apple-system, sans-serif;
font-size: inherit;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}
.container {
display: flex;
justify-content: space-between;
align-items: flex-start;
padding: 20px;
}
.container .button-list:not(:last-child) {
margin-right: 5%; /* Reduce the right margin by 15% */
}
.button-list {
color: #fff;
background-color: #161f27;
font-family: inherit;
font-size: inherit;
padding: 0; /* Remove the padding */
border: 2px white solid;
border-radius: 6px;
outline: none;
height: 75%;
width: 25%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center; /* Add this line to center the content vertically */
text-align: center;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}
.button-list img {
border-radius: 6px;
width: calc(100% - 20px); /* Subtract the desired margin from the width */
height: auto;
object-fit: contain;
margin: 10px; /* Add the desired margin */
}
.button-list .button-text {
transform: translateY(-35%); /* Vertically center the text */
}
canvas {
position: absolute;
z-index: 1;
image-rendering: pixelated;
}
#msg-layer {
position: absolute;
left: 0;
width: 100%;
top: 40vh;
background: rgba(0, 0, 0, 0.5);
z-index: 3;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}
#vk-layer {
position: absolute;
left: 0;
top: 0;
width: 100%
height: 100%;
z-index: 2;
touch-action: none;
}
#menu {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 4;
overflow: hidden scroll;
background: rgba(0, 0, 0, 0.8);
}
#menu button {
background: transparent;
}
#menu button:active {
background: rgba(255, 255, 255, 0.5);
}
a,
a:visited {
color: white;
}
.vk-rectangle {
text-align: center;
vertical-align: middle;
border-radius: 2.5% !important;
display: inline-block;
}
.vk-round {
text-align: center;
vertical-align: right;
border-radius: 50% !important;
display: inline-block;
}
.vk {
color: rgba(0, 0, 0, 0.2);
background-color: rgba(255, 255, 255, 0.25);
position: absolute;
z-index: 1;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
text-align: center;
vertical-align: middle;
border-radius: 15%;
display: inline-block;
}
.vk-touched {
background-color: rgba(255, 255, 255, 0.75) !important;
}
.link {
text-decoration: none;
font-weight: italic;
}