-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (55 loc) · 1.06 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
.main {
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
align-items: center;
}
.resultsbox {
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
align-items: center;
}
.scorebox {
display: flex;
margin: 1rem 0 1rem 0;
background-color: gold;
border-radius: 4px;
border-width: 0px;
padding: 1rem;
font-family: Arial, Helvetica, sans-serif;
font-size: 1rem;
}
.results {
font-family: Arial, Helvetica, sans-serif;
font-size: 1rem;
margin: 0.5rem 0 0.5rem 0;
}
.tie {
background-color: grey;
padding: 1rem;
border-radius: 4px;
border-width: 0px;
}
.loss {
background-color: red;
padding: 1rem;
border-radius: 4px;
border-width: 0px;
}
.win {
background-color: green;
padding: 1rem;
border-radius: 4px;
border-width: 0px;
}
.button {
background-color: cornflowerblue;
border-radius: 4px;
border-width: 0px;
padding: 1rem;
width: auto;
font-size: 1rem;
}