-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
35 lines (31 loc) · 737 Bytes
/
Copy pathstyle.css
File metadata and controls
35 lines (31 loc) · 737 Bytes
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
body {
margin: 60px auto;
width: 70%;
max-width: 950px;
}
h1 {
font-size: 3em;
font-family:'Helvetica', 'Arial', 'Sans-Serif';
}
p, button, input {
font-size: 1.5em;
line-height: 1.4em;
color: #333;
margin-bottom:1em;
}
#gameboard {
position:relative;
margin:0 auto 2em auto;
width:500px;
height:500px;
}
#gameboard div {
position:absolute;
-webkit-box-sizing: border-box; /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */
-moz-box-sizing: border-box; /* Firefox 1 - 28 */
box-sizing: border-box; /* Safari 5.1+, Chrome 10+, Firefox 29+, Opera 7+, IE 8+, Android 4.0+, iOS any */
background: #f6f8f9; /* Old browsers */
border: 1px solid #ddd;
width:50px;
height:50px;
}