-
Notifications
You must be signed in to change notification settings - Fork 0
/
slidingpuzzle.css
112 lines (97 loc) · 1.48 KB
/
slidingpuzzle.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
.nav a {
color: #5a5a5a;
font-size: 14px;
font-weight: bold;
padding: 14px 10px;
text-transform: uppercase;
}
.nav li {
display: inline;
}
.jumbotron {
background-repeat: no-repeat;
background-size: cover;
}
.jumbotron .container {
position: relative;
top: 0px;
margin: auto;
}
.jumbotron h1 {
color: #fff;
font-size: 48px;
font-family: 'Shift', sans-serif;
font-weight: bold;
margin: auto;
}
.jumbotron p {
font-size: 20px;
color: #fff;
}
#total {
width: 400px;
position: relative;
margin: auto;
}
.puzzletext{
margin: auto;
font-size: 200%;
font-family: sans-serif;
color: grey;
text-align: center;
padding-top: 20px;
padding-bottom: 25px;
}
#puzzlearea {
height: 400px;
width: 400px;
background: gray;
position: relative;
margin: auto;
}
#onepiece {
height: 400px;
width: 400px;
border: solid 1px black;
}
button {
font-size: 200%;
font-family: sans-serif;
margin: auto;
}
#size {
width: 200px;
margin: auto;
display: block;
}
.prettybutton {
display: block;
width: 150px;
height: 70px;
background: #4E9CAF;
padding: 10px;
text-align: center;
border-radius: 15px;
color: white;
font-weight: bold;
margin: auto;
}
.puz:hover {
opacity: 0.5;
cursor: pointer;
}
#comp {
margin: auto;
font-size: 300%;
font-family: sans-serif;
color: gray;
padding: 40px;
text-align: center;
}
#comp p {
text-align: center;
color: #4E9CAF;
font-size: 40px;
font-family: 'Shift', sans-serif;
font-weight: bold;
}