-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
125 lines (113 loc) · 3.03 KB
/
styles.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
/*custom fonts - Bitter, Montserrat*/
@import url('http://fonts.googleapis.com/css?family=Montserrat|Bitter');
/*basic reset*/
* {
padding: 0;
margin: 0;
font-family: Bitter, Helvetica;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
h1, h2, h3, h4, h5, h6 {
color: #444;
font-family: Bitter, Helvetica;
}
h1 {
font: normal 32px/32px Bitter;
text-align: center; padding: 85px 100px;
}
body {
overflow: hidden;
background: url("http://i.imgur.com/PhFQkdl.png") no-repeat center center fixed;
background-size: cover;
}
canvas {
display: block;
position: absolute;
margin: auto;
top: 0;
bottom: 0;
left: 0;
right: 0;
height: 600px;
width: 800px;
border: 5px ridge #634b30;
}
#gameover {
position: absolute;
margin: 0 auto;
margin-top: 100px;
font-size: 5em;
text-align: center;
height: 100%;
width: 100%;
}
.hidden {
display: none;
}
ol {
border: 4px outset #98BF21;
background-color: #d4f375;
max-width: 200px;
max-height: 100%;
text-align: center;
margin: 0 auto;
border-radius: 4px;
}
li {
border: 3px ridge #98BF21;
height: 45px;
width: 55px;
background-color: #a8dF41;
font-size: 38px;
color: #fff;
text-align: center;
margin: 10px auto;
box-shadow: 3px 3px 3px #333;
}
p {
color: #569D1A;
box-shadow: 3px 3px 3px #333;
background-color: #e4ff85;
display: inline-block;
opacity: 0.9;
}
#play-again {
-moz-box-shadow:inset 0px 1px 0px 0px #a6827e;
-webkit-box-shadow:inset 0px 1px 0px 0px #a6827e;
box-shadow:inset 0px 1px 0px 0px #a6827e;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #7d5d3b), color-stop(1, #634b30));
background:-moz-linear-gradient(top, #7d5d3b 5%, #634b30 100%);
background:-webkit-linear-gradient(top, #7d5d3b 5%, #634b30 100%);
background:-o-linear-gradient(top, #7d5d3b 5%, #634b30 100%);
background:-ms-linear-gradient(top, #7d5d3b 5%, #634b30 100%);
background:linear-gradient(to bottom, #7d5d3b 5%, #634b30 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#7d5d3b', endColorstr='#634b30',GradientType=0);
background-color:#7d5d3b;
-moz-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
border:1px solid #54381e;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-size:26px;
padding:6px 24px;
text-decoration:none;
text-shadow:0px 1px 0px #4d3534;
}
#play-again:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #634b30), color-stop(1, #7d5d3b));
background:-moz-linear-gradient(top, #634b30 5%, #7d5d3b 100%);
background:-webkit-linear-gradient(top, #634b30 5%, #7d5d3b 100%);
background:-o-linear-gradient(top, #634b30 5%, #7d5d3b 100%);
background:-ms-linear-gradient(top, #634b30 5%, #7d5d3b 100%);
background:linear-gradient(to bottom, #634b30 5%, #7d5d3b 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#634b30', endColorstr='#7d5d3b',GradientType=0);
background-color:#634b30;
}
#play-again:active {
position:relative;
top:1px;
}