-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
73 lines (64 loc) · 1.15 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
body {
background-image:url ('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSZC3MEL82Bsw5btpuMwcfDnsnb9S-lBpo6yBhxKMZUZuDNwAHz8w');
}
.header {
color : red;
font-size : 50px;
text-align: center;
}
.game h2 {
text-align: center;
font-size : 30px;
font-style: times;
color:#6495ED;
}
.rock {
float : left;
font-size : 30px;
color : brown;
margin-right: 120px;
margin-left: 10px;
}
.rock:hover{
cursor:pointer;
}
.paper {
float : left;
color : #00FFFF;
font-size : 30px;
margin-left : 160px;
margin-right: 120px;
}
.paper:hover {
cursor:pointer;
}
.fireball {
color:red;
font-size :30px;
float : left;
margin-left:60px;
}
.fireball:hover{
cursor:pointer;
}
.scoreboard {
border : 1px;
}
.scorebox {
border : 1px;
float:right;
}
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}
}
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */