-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
73 lines (65 loc) · 1.1 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
body{
background-position: center;
background-size: cover;
background-repeat: no-repeat;
margin: 0px;
padding: 0px;
width: 100%;
height: 100%;
overflow-y: auto;
}
.gameContainer{
margin: 0 auto;
background: transparent;
display: none;
}
.gamePianotitle{
background-color: #FFF;
/* width: 300px;
height: 500px;
*/
width: 100%;
height: 100%;
margin: 0 auto;
display: block;
border: 1px solid #111;
cursor: pointer;
border-left: none;
box-shadow: 0px 0px 10px #AAA;
}
.replay{
display: none;
}
.music{
display: none;
}
.center{
text-align: center;
}
.noBorder {
border: 0px;
padding:0;
margin:0;
border-collapse: collapse;
}
#menuContainer{
/*display: none;*/
/*max-height: 100%;*/
/*overflow-y: auto;*/
}
#menuContainer img{
/*display: none;*/
max-height: 200px;
/*max-width: 500px;*/
width: 100%;
border: 1px solid white;
}
#menuContainer img:hover{
transform: scaleX(2);
}
.visible{
display: block;
}
.invisible{
display: none;
}