-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (68 loc) · 1005 Bytes
/
style.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
body {
/* width:96%; */
}
.field {
width: 30px;
height: 30px;
background-color: red;
margin: 2px;
position: relative;
}
.hide {
cursor: pointer;
position:absolute;
left: 0;
top: 0;
z-index: 1;
width: 30px;
height: 30px;
background-color: blue;
margin: 0;
}
.hide:hover {
background-color: #3399ff;
}
.elem {
cursor: default;
padding-top: 5px;
color: white;
}
#game {
width: 306px;
margin-left: auto;
margin-right: auto;
margin-top: 30px;
}
.start {
cursor: pointer;
background-color: red;
color: white;
width: 302px;
height: 50px;
margin-left: auto;
margin-right: auto;
margin-top: 30px;
}
.start:hover {
background-color: #ff3939;
}
.start p {
padding-top: 15px;
padding-left: 80px;
}
.startwindow {
width: 302px;
height: 302px;
margin: 2px;
background-color: red;
}
.startwindow img {
width: 140px;
margin-left: 80px;
}
h1 {
color: white;
padding-top: 40px;
padding-bottom: 10px;
margin-left: 100px;
}