-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (92 loc) · 1.69 KB
/
style.css
File metadata and controls
104 lines (92 loc) · 1.69 KB
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
html, body {
margin: 0px;
text-align: center;
padding: 0;
background: black;
}
*{
margin: 0;
padding: 0;
-webkit-touch-callout: none; /*Safari */
-webkit-user-select: none; /*Chrome*/
-moz-user-select: none; /*Firefox*/
-ms-user-select: none; /*Internet Explorer/Edge*/
user-select: none;
-webkit-tap-highlight-color: transparent;
}
body {
width: 100%;
height: auto;
background: black;
}
.controls{
margin: auto;
align-items: center;
justify-content: center;
display: flex;
flex-direction: column;
margin: auto;
text-align: center;
padding: 0;
background: white;
width: 34vh;
height: 34vh;
margin-top: 7vh;
border-radius: 3vh;
}
#game {
border: 0.1vh solid white;
width: 70%;
height: 70%;
/*border-radius: 3vh;*/
margin-left: 5vh;
margin-right: 5vh;
margin-top: 8vh;
}
.ctrl_btn {
border-radius: 3vh;
border: 0;
padding: 3vh;
background: red;
cursor: pointer;
width: 9vh;
height: 9vh;
margin:0;
font-size: 3vh;
color: #FFFFFF;
text-align: center;
display: block ;
outline:0;
border:none;
transition:all .3s ease-out;
box-shadow:inset 0 -8px 0 0 rgba(0,0,0,.2)
}
.ctrl_btn:hover{
box-shadow:inset 0 -8px 0 0 rgba(0,0,0,.2)
}
.ctrl_btn:active{
box-shadow:inset 0 0px 0 0 rgba(0,0,0,.2)
}
.btn_center {
margin: 1vh;
}
.center_btn {
justify-content: center;
display: flex;
}
#btn_0 {
background: transparent;
cursor: none;
width: 9vh;
height: 9vh;
border: none;
}
.scores {
z-index: 1;
margin-top: 30;
color: white;
}
#text{
font-size: 4vh;
color: #FFFFFF;
}