-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (109 loc) · 2.17 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
html {
touch-action: manipulation;
}
body {
background-color: #2C2F33;
text-align: center;
}
#game {
width: 800px;
height: 600px;
border: 0px solid transparent;
box-shadow: 0px 0px 25px #F04747;
margin-top: 7%;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
#pfp {
border-radius: 50%;
width: 50px;
height: 50px;
}
#website-widget {
position: absolute;
top: 35px;
right: 35px;
border: 2px solid grey;
border-radius: 8px;
padding: 10px;
display: flex;
justify-content: center;
cursor: pointer;
-webkit-transition: background-color 0.25s ease-out;
-moz-transition: background-color 0.25s ease-out;
-o-transition: background-color 0.25s ease-out;
transition: background-color 0.25s ease-out;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
#website-widget:hover {
background-color: rgba(192, 192, 192, 0.3);
}
#mobile-controls {
display: none;
height: 650px;
width: 650px;
margin: auto;
margin-top: 50px;
grid-auto-flow: column;
align-items: center;
justify-content: auto;
}
#horizontal-column {
width: 100%;
display: inline-block;
grid-row-start: 1;
grid-column-start: 1;
z-index: 1;
}
#vertical-column {
height: 100%;
display: inline-grid;
grid-row-start: 1;
grid-column-start: 1;
z-index: 0;
}
#left-button {
margin-right: 50px;
left: 0;
}
#right-button {
margin-left: 50px;
right: 0;
}
.control {
width: 180px;
height: 180px;
border-radius: 30%;
border: 3px solid #7289DA;
box-shadow: 0px 0px 25px #7289DA;
cursor: pointer;
margin: auto;
justify-content: center;
display: inline-block;
-webkit-transition: background-color 0.25s ease-out;
-moz-transition: background-color 0.25s ease-out;
-o-transition: background-color 0.25s ease-out;
transition: background-color 0.25s ease-out;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
vertical-align: middle;
}
.control:hover, .control:active {
background-color: rgba(114, 137, 218, 0.3);
}
.control-display {
color: white;
margin: 15%;
font-size: 6em;
border-top: 50%;
user-select: none;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
border-radius: 8px;
background: #2C2F33;
}
::-webkit-scrollbar-thumb {
border-radius: 8px;
background: #555;
}