-
Notifications
You must be signed in to change notification settings - Fork 162
/
style.css
101 lines (92 loc) · 1.62 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
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
* {
font-family: arial;
}
#theGame {
width: 100%;
border-left: 1px solid lightblue;
border-right: 1px solid lightblue;
border-bottom: 2px solid #e65189;
margin: auto;
position: relative;
overflow: hidden;
}
#theGame img {
position: absolute;
display: table;
width: 60px;
height: 100px;
top: 0%;
}
#points_loses {
position: relative;
}
#points {
float: left;
margin-left: 35%;
font-size: 13px;
}
#points span {
font-size: 25px;
color: #e65189;
}
#loses {
float: right;
margin-right: 5px;
font-size: 13px;
}
#loses span {
font-size: 25px;
color: #e65189;
}
#gameOverContainer {
width: 96%;
height: 500px;
background-color: silver;
position: absolute;
top: 0%;
display: none;
z-index: 100;
}
#gameOverContainer div {
margin: auto;
margin-top: 10%;
width: 70%;
height: 200px;
text-align: center;
background-color: #e65189;
padding-top: 20px;
}
#gameOverContainer div h2 {
color: white;
}
#gameOverContainer div a {
color: white;
border: 1px solid white;
padding: 5px 5px;
text-decoration: none;
}
#startGameContainer {
width: 96%;
height: 500px;
background-color: silver;
position: absolute;
top: 0%;
z-index: 100;
}
#startGameContainer div {
margin: auto;
margin-top: 10%;
width: 70%;
height: 200px;
text-align: center;
background-color: #e65189;
padding-top: 20px;
}
#startGameContainer div h1 {
color: white;
border: 1px solid white;
padding: 5px 5px;
width: 100px;
margin: auto;
margin-top: 20%;
}