-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (53 loc) · 772 Bytes
/
style.css
File metadata and controls
57 lines (53 loc) · 772 Bytes
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
*{
margin: 0;
padding:0;
}
body{
background:gray;
}
header{
background-color: white;
text-align: center;
padding: 20px;
}
.start{
text-align: center;
font-size: 30px;
font-weight: bold;
padding-top: 15px;
}
.score-board{
text-align: center;
width:100px;
padding: 15px 20px ;
font-family: serif;
margin:20px auto;
border:1px solid white;
cursor:pointer;
border-radius: 10px;
position: relative;
}
#userbadge{
color:red;
position: absolute;
top:15px;
left:-15px;
}
#computerbadge{
color:red;
position: absolute;
top:15px;
right:-15px;
}
.choice{
display: inline-block;
position: relative;
left:40%;
padding-top: 20px;
cursor: pointer;
margin: 10px;
}
.result {
text-align: center;
font-size: 25px;
}