-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (57 loc) · 1.02 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
body{
background-color: pink;
color: black;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 1.1em;
display:flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
}
.labels{
margin-top: 10px;
display: flex;
font-size: smaller;
}
.scores{
display: flex;
}
#playerlabel{
margin-right: 3px;
margin-top: 1px;
}
#computerlabel{
margin-left: 25px;
margin-top: 1px;
padding-left: 13px;
}
.playerscore{
border:5px solid black;
margin-right: 13px;
margin-left: auto;
width:100px;
height: 25px;
padding: 2px;
}
.computerscore{
border:5px solid black;
margin-left: 3px;
width:100px;
height:25px;
padding: 2px;
}
.final{
display: flex;
margin-top: 25px;
flex-direction: column;
justify-content: center;
align-items: center;
}
.winner{
border:5px solid black;
margin-right: 13px;
margin-left: 5px;
width:150px;
height: 50px;
padding: 2px;
}