-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (66 loc) · 1.01 KB
/
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
html,
body,
.container2 {
background-color: lightblue;
}
.cell {
background-color: rgb(233, 233, 233);
width: 25px;
height: 25px;
display: inline-block;
margin: 0px;
position: relative;
background-size: cover;
}
.clicked {
border: 2px solid grey;
}
.not_clicked {
border-top: 2px solid white;
border-left: 2px solid white;
border-right: 2px solid grey;
border-bottom: 2px solid grey;
}
.map_ul {
margin: 0px;
padding: 0px;
border: 0px;
height: 0px;
}
.title {
left: 500px;
top: 35px;
position: relative;
margin-bottom: 0px;
padding-bottom: 0px;
}
.score_board {
top: 65px;
border: 2px solid black;
background-color: lightgray;
position: fixed;
height: 50px;
width: 85px;
padding: 10px 5px;
left: 200px;
}
.score_title {
left: 200px;
top: 40px;
position: fixed;
}
.score_info {
position: fixed;
top: 120px;
left: 200px;
}
.score_info p {
margin-top: 0px;
margin-bottom: 0px;
}
.game_completed {
position: fixed;
top: 250px;
left: 550px;
font-size: 3em;
}