-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
64 lines (53 loc) · 838 Bytes
/
main.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
body {
background-color: black;
color: white;
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
}
.center {
margin-left:auto;
margin-right:auto;
width: 800px;
}
.left {
float: left;
}
.right {
float: right;
}
.button {
padding: 1em 2em;
font-weight: bold;
color:black;
background-color: lightgrey;
font-size: 1.5em;
}
.button:hover {
border: rgb(119, 120, 122) solid 2px;
cursor: pointer;
}
.red {
background-color: red;
border: red solid 2px;
}
.green {
background-color: green;
border: green solid 2px;
}
table td {
padding: 2em;
border: white solid 2px;
}
table {
text-align: center;
border-collapse: collapse;
}
.text-center {
padding: 2em 9em;
}
#piecesPerBall {
width: 30px;
}
#text {
font-size: 4em;
}