-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpowerball.css
56 lines (50 loc) · 1 KB
/
powerball.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
body {
color: #FFF;
font-family: sans-serif;
background-color: #003399;
}
table {
border-collapse: collapse;
}
table.result td, table.result th {
min-width: 75px;
padding: 1em;
border:#000000 solid 1px
}
table td, table th {
border:#000000 solid 1px
}
.whiteball, .powerball {
height: 2em;
line-height: 2em;
width: 2em;
margin: 1em;
text-align: center;
display: inline-block;
border-radius: 500px;
}
.whiteball {
background: #FFF;
color: #000;
}
.powerball {
background: #C31F3A;
color: #FFF;
}
.ui-button-text-only .ui-button-text {
font-size: .8em;
padding: .1em .2em;
}
/* Corner radius */
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
border-top-left-radius: 1em;
}
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
border-top-right-radius: 1em;
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
border-bottom-left-radius: 1em;
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
border-bottom-right-radius: 1em;
}