-
Notifications
You must be signed in to change notification settings - Fork 0
/
样式.css
58 lines (51 loc) · 772 Bytes
/
样式.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
#header {
color:#990000;
width:500px;
height:200px;
margin:0 auto;
padding:10px;
font-family:Arial, Helvetica, sans-serif;
font-style:normal;
}
#header h1{
text-align:center;
font-size:2cm;
margin:20px;
}
#header p{
display:inline;
margin:20px;
width:200px;
font-size:1cm;
}
#header button {
background-color:orange;
margin:10px 20px;
padding:10px;
width:200px;
font-size:1cm;
}
#grid {
width:460px;
height:460px;
padding:20px;
margin:10px auto;
background-color:olive;
position:relative;
}
.grid-cell {
width:100px;
height:100px;
background-color:orange;
position:absolute;
}
.grid-number {
width:100px;
height:100px;
color:black;
position:absolute;
font-size:60px;
font-weight:bold;
line-height:100px;
text-align:center;
}