-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
57 lines (49 loc) · 839 Bytes
/
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
body {
background-color: #EEFFFF;
}
#page {
margin: 30px auto;
padding: 20px;
background-color: #F7FFFF;
text-align: center;
box-shadow: 3px 5px 20px #AAAAAA;
}
#game {
width: 100%;
background-color: #FDFFFF;
box-shadow: 0px 1px 4px #AAAAAA;
}
#title {
margin: 10px auto;
color: #555577;
}
#desc {
color: #111122;
}
.button {
width: auto;
margin: 15px auto 10px auto;
text-align: center;
border-radius: 5px;
background-color: #66CC55;
cursor: pointer;
transition: all 0.2s ease;
font-weight: bold;
color: #225533;
box-shadow: 2px 2px 10px #AAAAAA;
}
.button:hover {
color: #FFFFFF;
background-color: #44AAFF;
}
.button:active {
background-color: #50B0FF;
}
.button div {
padding: 15px;
margin: 0px auto;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}