forked from 00range/FifteenPuzzle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
15Styling.css
40 lines (34 loc) · 892 Bytes
/
15Styling.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
/*This style sheet is for Fifteenpuzzle.html, by Abdullah Hadid*/
body { background-image: url(http://walops.com/wp-content/uploads/One-Piece-Luffy-Widescreen-Background-Wallpaper.jpg);
background-attachment: fixed;
background-repeat: no-repeat;
}
.special {
border-style: solid;
border-color: orange;
border-width: 10px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
p {
color: yellow;
text-align: center;
}
h2 {
color: red;
text-align: center;
}
.cell {
width: 60px;
height: 60px;
margin: 10px;
text-align: center;
background-color: Red;
font-weight: bold;
font-size: xx-large;
padding: 10px;
}
.empty {
background-color: black;
}