-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
116 lines (94 loc) · 2.21 KB
/
stylesheet.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
html, body {
height: 100%;
}
#wrapper {
margin: 5% auto;
width: 600px;
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
}
#main {
margin: auto;
width:400px;
height:400px;
position: relative;
}
.tile {
width:96px;
height:96px;
float: left;
text-align: center;
border: 2px black solid;
vertical-align: middle;
font-size: 32px;
font-family: sans-serif;
line-height: 100px;
text-shadow: 1px 1px 2px black, 0 0 25px white, 0 0 5px white;
}
h1 {
text-align: center;
margin: auto;
}
button, select {
display: block;
margin: 10px auto;
}
img {
height: 30px;
float: right;
}
a {
text-decoration: none;
border:0;
}
#one { background-position: 0 0; }
#two { background-position: -100px 0; }
#three { background-position: -200px 0; }
#four { background-position: -300px 0; }
#five { background-position: 0 -100px; }
#six { background-position: -100px -100px; }
#seven { background-position: -200px -100px; }
#eight { background-position: -300px -100px; }
#nine { background-position: 0 -200px; }
#ten { background-position: -100px -200px; }
#eleven { background-position: -200px -200px; }
#twelve { background-position: -300px -200px; }
#thirteen { background-position: 0 -300px; }
#fourteen { background-position: -100px -300px; }
#fifteen { background-position: -200px -300px; }
#sixteen { border: 2px solid white !important; }
.clickable {
transition: all 0.5s ease-in-out;
}
.clickable:hover {
border-color: red !important;
text-decoration: underline !important;
color: #006600;
cursor: pointer;
}
#win {
font-size: 15px;
font-weight: bold;
margin: auto;
text-align: center;
display: block;
}
#win img {
float: none !important;
height: 100% !important;
}
.animate-up {
transform: translate(0, -100px);
}
.animate-down {
transform: translate(0, 100px);
}
.animate-left {
transform: translate(-100px, 0);
}
.animate-right {
transform: translate(100px, 0);
}